turn-based-strategy-game/server/build.gradle

23 lines
396 B
Groovy
Raw Normal View History

/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
2021-10-17 16:27:25 +02:00
id 'application'
id 'fr.lnl.game.java-library-conventions'
}
2021-10-21 16:47:41 +02:00
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}
2021-10-17 16:27:25 +02:00
application {
mainClassName = 'fr.lnl.game.server.ServerMain'
2021-10-17 16:27:25 +02:00
}
2021-10-21 16:47:41 +02:00
test {
useJUnitPlatform()
}