OsmAnd/OsmAnd-java/build.gradle
2015-02-03 11:13:11 +02:00

27 lines
328 B
Groovy

apply plugin: 'java'
sourceSets {
main {
java {
srcDirs = ["src"]
}
}
}
configurations {
android
}
task androidJar(type: Jar) {
appendix = "android"
from sourceSets.main.output
exclude("**/PlatformUtil.*")
}
artifacts {
android androidJar
}
dependencies {
compile fileTree(dir: "libs", include: ["*.jar"])
}