diff --git a/build.gradle b/build.gradle index abd1f20..8fa2f29 100644 --- a/build.gradle +++ b/build.gradle @@ -18,8 +18,8 @@ plugins { ext { artifactId = "lazysodium-java-code" - groupId = "io.github.sean-codevasp" - version = '0.1.1' + groupId = "com.codevasp" + version = '1.0.0' description = "Lazy sodium (Java) makes it effortless for Java " + "developers to get started with Libsodium's cryptography." } @@ -33,8 +33,8 @@ version = project.ext.version mainClassName = "com.codevasp.lazysodium.LazySodium" -sourceCompatibility = 17 -targetCompatibility = 17 +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 sourceSets { main { @@ -52,18 +52,18 @@ mavenPublishing { signAllPublications() publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL) - coordinates("io.github.sean-codevasp", "lazysodium-java-code", "0.1.1") + coordinates("com.codevasp", "lazysodium-java-code", "1.0.0") pom { name = 'lazysodium-java-code' description = "Lazy sodium (Java) makes it effortless for Java " + "developers to get started with Libsodium's cryptography." - url = '' + url = '' licenses { license { name = 'Mozilla Public License Version 2.0' - url = '' + url = '' } } @@ -76,9 +76,9 @@ mavenPublishing { } scm { - connection = 'scm:git:github.com/sean-codevasp/lazysodium-java-code.git' - developerConnection = 'scm:git:ssh://github.com/sean-codevasp/lazysodium-java-code.git' - url = '' + connection = 'scm:git:https://github.com/codevasp-lab/lazysodium-java-code.git' + developerConnection = 'scm:git:ssh://https://github.com/codevasp-lab/lazysodium-java-code.git' + url = '' } } } diff --git a/gradle.properties b/gradle.properties index 5b67ea5..6e6dc96 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,4 +5,3 @@ # License, v2.0. If a copy of the MPL was not distributed with this # file, you can obtain one at http://mozilla.org/MPL/2.0/. # -