Skip to content

Commit

Permalink
fix: correct some typos in android build for apollo
Browse files Browse the repository at this point in the history
Signed-off-by: Javier Ribó <[email protected]>
  • Loading branch information
elribonazo committed Jul 11, 2024
1 parent 78a7a5f commit d8a0b0a
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,6 @@ allprojects {
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
maven {
name = "OSSRH"
url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
credentials {
username = project.findProperty("sonatypeUsername") as String? ?: System.getenv("SONATYPE_USERNAME")
password = project.findProperty("sonatypePassword") as String? ?: System.getenv("SONATYPE_PASSWORD")
}
}
}

apply(plugin = "org.gradle.maven-publish")
Expand Down Expand Up @@ -124,8 +115,8 @@ allprojects {
}
}
scm {
connection.set("scm:git://[email protected]:hyperledger/identus-apollo.git")
developerConnection.set("scm:git:ssh://[email protected]:hyperledger/identus-apollo.git")
connection.set("scm:git:git://[email protected]/hyperledger/identus-apollo.git")
developerConnection.set("scm:git:ssh://[email protected]/hyperledger/identus-apollo.git")
url.set("https://github.com/hyperledger/identus-apollo")
}
}
Expand Down Expand Up @@ -186,3 +177,6 @@ nexusPublishing {
}
}
}



0 comments on commit d8a0b0a

Please sign in to comment.