update readme #2

Merged
numbers merged 15 commits from test-build into main 2026-01-24 13:05:13 -06:00
Showing only changes of commit e53edc90cc - Show all commits
+25 -25
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"
} // }
} // }
} // }
} // }
} }
} }