mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-23 11:31:33 +01:00
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"
|