OsmAnd/OsmAnd-java/build.gradle

26 lines
439 B
Groovy
Raw Normal View History

2018-06-15 15:17:35 +02:00
apply plugin: 'java'
2015-02-03 10:13:11 +01:00
configurations {
android
}
task androidJar(type: Jar) {
appendix = "android"
2018-06-15 15:17:35 +02:00
from sourceSets.main.java.outputDir
2015-02-03 10:13:11 +01:00
exclude("**/PlatformUtil.*")
}
artifacts {
android androidJar
2014-12-16 12:23:45 +01:00
}
dependencies {
2018-06-15 14:54:55 +02:00
testImplementation 'junit:junit:4.12'
testImplementation 'com.google.code.gson:gson:2.8.2'
testImplementation 'org.hamcrest:hamcrest-core:1.3'
implementation fileTree(dir: "libs", include: ["*.jar"])
2014-12-16 12:23:45 +01:00
}
2016-06-29 20:23:33 +02:00