2014-12-16 12:23:45 +01:00
|
|
|
apply plugin: 'java'
|
2015-11-26 11:27:16 +01:00
|
|
|
apply plugin: 'application'
|
2016-01-16 10:32:09 +01:00
|
|
|
mainClassName = "net.osmand.util.GeoPointParserUtil"
|
2014-12-16 12:23:45 +01:00
|
|
|
|
2015-02-02 16:54:43 +01:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
2015-02-03 10:13:11 +01:00
|
|
|
srcDirs = ["src"]
|
2015-02-02 16:54:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-03 10:13:11 +01:00
|
|
|
configurations {
|
|
|
|
android
|
|
|
|
}
|
|
|
|
|
|
|
|
task androidJar(type: Jar) {
|
|
|
|
appendix = "android"
|
|
|
|
from sourceSets.main.output
|
|
|
|
exclude("**/PlatformUtil.*")
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
android androidJar
|
2014-12-16 12:23:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2015-02-02 16:54:43 +01:00
|
|
|
compile fileTree(dir: "libs", include: ["*.jar"])
|
2014-12-16 12:23:45 +01:00
|
|
|
}
|