mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-23 19:34:08 +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.13'
|
|
}
|
|
|
|
sourceCompatibility = "8"
|
|
targetCompatibility = "8"
|