Fix OsmAnd-java publishing
This commit is contained in:
parent
5f4e4bde12
commit
7259c75e8f
2 changed files with 12 additions and 9 deletions
|
@ -1,5 +1,6 @@
|
|||
apply plugin: 'java'
|
||||
apply plugin: 'maven-publish'
|
||||
apply plugin: 'ivy-publish'
|
||||
|
||||
configurations {
|
||||
android
|
||||
|
@ -85,12 +86,22 @@ artifacts {
|
|||
}
|
||||
|
||||
publishing {
|
||||
repositories {
|
||||
ivy {
|
||||
url = System.getenv("OSMAND_BINARIES_IVY_ROOT") ?: "./"
|
||||
}
|
||||
}
|
||||
publications {
|
||||
maven(MavenPublication) {
|
||||
artifactId "osmand-base"
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
ivyJava(IvyPublication) {
|
||||
artifact androidJar {
|
||||
classifier 'android'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -339,11 +339,6 @@ task appStart(type: Exec) {
|
|||
}
|
||||
|
||||
artifacts {
|
||||
archives(file("../OsmAnd-java/build/libs/OsmAnd-java-android-1.0.jar")) {
|
||||
classifier "OsmAnd-java-android"
|
||||
name 'OsmAnd'
|
||||
type "jar"
|
||||
}
|
||||
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-x86-debug.aar")) {
|
||||
classifier 'legacyX86Debug'
|
||||
name 'OsmAnd'
|
||||
|
@ -396,8 +391,6 @@ artifacts {
|
|||
}
|
||||
}
|
||||
|
||||
// Uploading artifacts to local path
|
||||
group = 'net.osmand'
|
||||
uploadArchives {
|
||||
repositories.ivy {
|
||||
// credentials {
|
||||
|
@ -406,7 +399,6 @@ uploadArchives {
|
|||
// }
|
||||
|
||||
url = System.getenv("OSMAND_BINARIES_IVY_ROOT") ?: "./"
|
||||
version = "1.0-SNAPSHOT"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue