Fix gradle api key
All checks were successful
Java Google Checkstyle / Checkstyle Linter (pull_request) Successful in 25s
Build with gradle / Build-with-gradle (pull_request) Successful in 2m50s

This commit is contained in:
2026-01-24 12:36:25 -06:00
parent d4dc873ab3
commit e53edc90cc

View File

@@ -8,7 +8,7 @@ plugins {
group = "com.softwaresmyth" group = "com.softwaresmyth"
version = "1.0-SNAPSHOT" version = "1.0-SNAPSHOT"
val mySecret = project.findProperty("mySecretProperty") val mySecret = project.findProperty("gradleKey")
publishing { publishing {
// Define a publication, in this case for Maven // Define a publication, in this case for Maven
@@ -29,30 +29,30 @@ publishing {
} }
} }
} }
//
create<MavenPublication>("Smythery") { // create<MavenPublication>("Smythery") {
// Specify which component to publish (usually "java" for a standard library) // // Specify which component to publish (usually "java" for a standard library)
from(components["java"]) // from(components["java"])
//
// Optional: Customize POM metadata (required for Maven Central) // // Optional: Customize POM metadata (required for Maven Central)
pom { // pom {
name = "Ornot" // name = "Ornot"
description = "A library of methods that do nothing" // description = "A library of methods that do nothing"
url = "https://gitea.softwaresmyth.com/numbers/Ornot" // url = "https://gitea.softwaresmyth.com/numbers/Ornot"
licenses { // licenses {
license { // license {
name = "The Apache License, Version 2.0" // name = "The Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt" // url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
} // }
} // }
developers { // developers {
developer { // developer {
id = "Numbers" // id = "Numbers"
name = "Josh Chester" // name = "Josh Chester"
} // }
} // }
} // }
} // }
} }
} }