Skip to content
This repository was archived by the owner on Mar 10, 2025. It is now read-only.

Commit 06a64a7

Browse files
Merge pull request #4 from codevasp-lab/develop
java version 1.8
2 parents c959080 + b8747d3 commit 06a64a7

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ plugins {
1818

1919
ext {
2020
artifactId = "lazysodium-java-code"
21-
groupId = "io.github.sean-codevasp"
22-
version = '0.1.1'
21+
groupId = "com.codevasp"
22+
version = '1.0.0'
2323
description = "Lazy sodium (Java) makes it effortless for Java " +
2424
"developers to get started with Libsodium's cryptography."
2525
}
@@ -33,8 +33,8 @@ version = project.ext.version
3333

3434
mainClassName = "com.codevasp.lazysodium.LazySodium"
3535

36-
sourceCompatibility = 17
37-
targetCompatibility = 17
36+
sourceCompatibility = JavaVersion.VERSION_1_8
37+
targetCompatibility = JavaVersion.VERSION_1_8
3838

3939
sourceSets {
4040
main {
@@ -52,18 +52,18 @@ mavenPublishing {
5252
signAllPublications()
5353
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
5454

55-
coordinates("io.github.sean-codevasp", "lazysodium-java-code", "0.1.1")
55+
coordinates("com.codevasp", "lazysodium-java-code", "1.0.0")
5656

5757
pom {
5858
name = 'lazysodium-java-code'
5959
description = "Lazy sodium (Java) makes it effortless for Java " +
6060
"developers to get started with Libsodium's cryptography."
61-
url = '<https://github.com/sean-codevasp/lazysodium-java-code>'
61+
url = '<https://github.com/codevasp-lab/lazysodium-java-code>'
6262

6363
licenses {
6464
license {
6565
name = 'Mozilla Public License Version 2.0'
66-
url = '<https://github.com/sean-codevasp/lazysodium-java-code/blob/master/LICENSE>'
66+
url = '<https://github.com/codevasp-lab/lazysodium-java-code/blob/master/LICENSE>'
6767
}
6868
}
6969

@@ -76,9 +76,9 @@ mavenPublishing {
7676
}
7777

7878
scm {
79-
connection = 'scm:git:github.com/sean-codevasp/lazysodium-java-code.git'
80-
developerConnection = 'scm:git:ssh://github.com/sean-codevasp/lazysodium-java-code.git'
81-
url = '<https://github.com/sean-codevasp/lazysodium-java-code/tree/master>'
79+
connection = 'scm:git:https://github.com/codevasp-lab/lazysodium-java-code.git'
80+
developerConnection = 'scm:git:ssh://https://github.com/codevasp-lab/lazysodium-java-code.git'
81+
url = '<https://https://github.com/codevasp-lab/lazysodium-java-code/tree/master>'
8282
}
8383
}
8484
}

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55
# License, v2.0. If a copy of the MPL was not distributed with this
66
# file, you can obtain one at http://mozilla.org/MPL/2.0/.
77
#
8-

0 commit comments

Comments
 (0)