Proper gradle

This commit is contained in:
Alexey Pelykh 2015-02-03 11:13:11 +02:00
parent 75a0c03e40
commit 3ec9d6dbd2
3 changed files with 15 additions and 8 deletions

View file

@ -3,16 +3,23 @@ apply plugin: 'java'
sourceSets {
main {
java {
srcDirs = [
"src"
]
srcDirs = ["src"]
}
}
}
// This is Android-specific
jar {
exclude "**/PlatformUtil.*"
configurations {
android
}
task androidJar(type: Jar) {
appendix = "android"
from sourceSets.main.output
exclude("**/PlatformUtil.*")
}
artifacts {
android androidJar
}
dependencies {

View file

@ -299,7 +299,7 @@ repositories {
}
dependencies {
compile project(":OsmAnd-java")
compile project(path: ":OsmAnd-java", configuration: "android")
compile fileTree(
dir: "libs",
include: ["*.jar"],

View file

@ -1,2 +1,2 @@
include ':OsmAnd'
include ':OsmAnd-java'
include ':OsmAnd'