From 1dd0aeacea49e122f4b96b78577c1a3c548fc201 Mon Sep 17 00:00:00 2001 From: fekt Date: Sun, 11 Dec 2022 10:29:38 -0500 Subject: [PATCH] Renaming package for publishing. Still using mavenLocal --- sdk-lib/build.gradle.kts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/sdk-lib/build.gradle.kts b/sdk-lib/build.gradle.kts index 9f229aa..891f8f2 100644 --- a/sdk-lib/build.gradle.kts +++ b/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") } }