2021-10-10 15:19:04 +02:00
|
|
|
/*
|
|
|
|
* This file was generated by the Gradle 'init' task.
|
|
|
|
*/
|
|
|
|
|
|
|
|
plugins {
|
2021-10-17 16:27:25 +02:00
|
|
|
id 'application'
|
2021-10-10 15:19:04 +02:00
|
|
|
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-11-29 19:22:43 +01:00
|
|
|
compileJava {
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
}
|
|
|
|
|
2021-10-17 16:27:25 +02:00
|
|
|
application {
|
2021-10-23 19:15:08 +02:00
|
|
|
mainClassName = 'fr.lnl.game.server.ServerMain'
|
2021-10-17 16:27:25 +02:00
|
|
|
}
|
|
|
|
|
2021-10-21 16:47:41 +02:00
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|