27 lines
444 B
Groovy
27 lines
444 B
Groovy
/*
|
|
* This file was generated by the Gradle 'init' task.
|
|
*/
|
|
|
|
plugins {
|
|
id 'application'
|
|
id 'fr.lnl.game.java-library-conventions'
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = 'UTF-8'
|
|
}
|
|
|
|
application {
|
|
mainClassName = 'fr.lnl.game.server.ServerMain'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|