From 8470183e870e62228e0ca8fad197ce756c54cfee Mon Sep 17 00:00:00 2001 From: soloturn <soloturn@gmail.com> Date: Sat, 15 Jan 2022 03:27:03 +0100 Subject: [PATCH 1/2] gradle.properties values are not quoted --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 125f5c0a8..92dd41656 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version = "1.2021.16-SNAPSHOT" +version = 1.2022.1-SNAPSHOT From 558c74abcb9137a0411e7639b8357c51caea149c Mon Sep 17 00:00:00 2001 From: soloturn <soloturn@gmail.com> Date: Sat, 15 Jan 2022 10:23:57 +0100 Subject: [PATCH 2/2] build.gradle.kts, add gpg signing --- build.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 0d351be6b..d93c4ef3b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,6 +1,7 @@ plugins { java `maven-publish` + signing } repositories { @@ -99,3 +100,8 @@ tasks.test { useJUnitPlatform() testLogging.showStandardStreams = true } + +signing { + useGpgCmd() + sign(publishing.publications["maven"]) +}