From e53edc90cc09ef04b0b7b45aa76910b26bd49f48 Mon Sep 17 00:00:00 2001 From: Josh Chester Date: Sat, 24 Jan 2026 12:36:25 -0600 Subject: [PATCH] Fix gradle api key --- build.gradle.kts | 50 ++++++++++++++++++++++++------------------------ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index b1a0706..98771a9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ plugins { group = "com.softwaresmyth" version = "1.0-SNAPSHOT" -val mySecret = project.findProperty("mySecretProperty") +val mySecret = project.findProperty("gradleKey") publishing { // Define a publication, in this case for Maven @@ -29,30 +29,30 @@ publishing { } } } - - create("Smythery") { - // Specify which component to publish (usually "java" for a standard library) - from(components["java"]) - - // Optional: Customize POM metadata (required for Maven Central) - pom { - name = "Ornot" - description = "A library of methods that do nothing" - url = "https://gitea.softwaresmyth.com/numbers/Ornot" - licenses { - license { - name = "The Apache License, Version 2.0" - url = "http://www.apache.org/licenses/LICENSE-2.0.txt" - } - } - developers { - developer { - id = "Numbers" - name = "Josh Chester" - } - } - } - } +// +// create("Smythery") { +// // Specify which component to publish (usually "java" for a standard library) +// from(components["java"]) +// +// // Optional: Customize POM metadata (required for Maven Central) +// pom { +// name = "Ornot" +// description = "A library of methods that do nothing" +// url = "https://gitea.softwaresmyth.com/numbers/Ornot" +// licenses { +// license { +// name = "The Apache License, Version 2.0" +// url = "http://www.apache.org/licenses/LICENSE-2.0.txt" +// } +// } +// developers { +// developer { +// id = "Numbers" +// name = "Josh Chester" +// } +// } +// } +// } } }