Browse Source

Renaming package for publishing. Still using mavenLocal

main
fekt 1 year ago
parent
commit
1dd0aeacea
  1. 28
      sdk-lib/build.gradle.kts

28
sdk-lib/build.gradle.kts

@ -23,14 +23,14 @@ plugins {
// Publishing information
val isSnapshot = project.property("IS_SNAPSHOT").toString().toBoolean()
val version = project.property("LIBRARY_VERSION").toString()
project.group = "cash.z.ecc.android"
project.group = "hush.android"
project.version = if (isSnapshot) {
"$version-SNAPSHOT"
} else {
version
}
val myArtifactId = "zcash-android-sdk"
val myArtifactId = "hush-android-sdk"
publishing {
publications {
@ -116,27 +116,27 @@ mavenPublishing {
signAllPublications()
pom {
name.set("Zcash Android Wallet SDK")
description.set("This lightweight SDK connects Android to Zcash, allowing third-party Android " +
name.set("Hush Android Wallet SDK")
description.set("This lightweight SDK connects Android to Hush, allowing third-party Android " +
"apps to send and receive shielded transactions easily, securely and privately.")
url.set("https://github.com/zcash/zcash-android-wallet-sdk/")
inceptionYear.set("2018")
url.set("https://git.hush.is/hush/hush-android-wallet-sdk")
inceptionYear.set("2022")
scm {
url.set("https://github.com/zcash/zcash-android-wallet-sdk/")
connection.set("scm:git:git://github.com/zcash/zcash-android-wallet-sdk.git")
developerConnection.set("scm:git:ssh://git@github.com/zcash/zcash-android-wallet-sdk.git")
url.set("https://git.hush.is/hush/hush-android-wallet-sdk")
connection.set("scm:git:git://git.hush.is/hush/hush-android-wallet-sdk.git")
developerConnection.set("scm:git:ssh://git@git.hush.is/hush/hush-android-wallet-sdk.git")
}
developers {
developer {
id.set("zcash")
name.set("Zcash")
url.set("https://github.com/zcash/")
id.set("hush")
name.set("Hush")
url.set("https://git.hush.is")
}
}
licenses {
license {
name.set("The MIT License")
url.set("http://opensource.org/licenses/MIT")
name.set("GNU General Public License")
url.set("https://www.gnu.org/licenses/gpl-3.0.en.html")
distribution.set("repo")
}
}

Loading…
Cancel
Save