mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-23 11:31:33 +01:00
fa9cf93245
This program can be run on a PC and works as an engine server that DroidFish can connect to using its "network engine" feature.
16 lines
305 B
Groovy
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"
|