Release version 1.0.0 and enhance repository credentials

This commit finalizes the release version by updating the version number from "1.0.0-SNAPSHOT" to "1.0.0" in the `build.gradle.kts` file. It also adds repository credentials for two Maven repositories, "gitea" and "gitea8443", to enable authenticated access. These changes ensure proper versioning and enhance secure access to dependencies.
This commit is contained in:
2024-12-07 17:21:48 +01:00
parent 9fb33adaa9
commit 2995808bcc

View File

@@ -5,7 +5,7 @@ plugins {
}
group = "nl.astraeus"
version = "1.0.0-SNAPSHOT"
version = "1.0.0"
repositories {
mavenCentral()
@@ -58,6 +58,18 @@ publishing {
name = "gitea"
setUrl("https://gitea.astraeus.nl/api/packages/rnentjes/maven")
credentials {
val giteaUsername: String? by project
val giteaPassword: String? by project
username = giteaUsername
password = giteaPassword
}
}
maven {
name = "gitea8443"
setUrl("https://gitea.astraeus.nl:8443/api/packages/rnentjes/maven")
credentials {
val giteaUsername: String? by project
val giteaPassword: String? by project