droidfish/EngineServer/build.gradle
Peter Osterlund fa9cf93245 Create EngineServer Java program
This program can be run on a PC and works as an engine server that
DroidFish can connect to using its "network engine" feature.
2019-05-18 21:20:27 +02:00

16 lines
305 B
Groovy

apply plugin: 'java-library'
jar {
manifest {
attributes "Main-Class": "org.petero.engineserver.EngineServer"
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
}
sourceCompatibility = "8"
targetCompatibility = "8"