droidfish/CuckooChess/build.gradle

26 lines
738 B
Groovy
Raw Normal View History

2019-03-17 09:11:36 +01:00
apply plugin: 'java-library'
if (project.file('../CuckooChessEngine/build/libs/CuckooChessEngine.jar').exists()) {
2019-04-19 20:26:30 +02:00
jar {
manifest {
attributes "Main-Class": "tui.Main"
}
from zipTree('../CuckooChessEngine/build/libs/CuckooChessEngine.jar')
}
2019-03-17 09:11:36 +01:00
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':CuckooChessEngine')
// Required -- JUnit 4 framework
testImplementation 'junit:junit:4.12'
// Optional -- Robolectric environment
testImplementation 'androidx.test:core:1.1.0'
2019-03-17 09:11:36 +01:00
// Optional -- Mockito framework
testImplementation 'org.mockito:mockito-core:1.10.19'
}
sourceCompatibility = "8"
targetCompatibility = "8"