Add custom Maven repository to build.gradle.kts

Removed mavenLocal() and added a new custom Maven repository URL to the repositories block. This change allows the project to fetch dependencies from the specified Gitea-based Maven repository. The adjustment ensures access to specific packages not available on Maven Central.
This commit is contained in:
2024-11-29 17:24:40 +01:00
parent 8d5d885683
commit dd1af44a1a

View File

@@ -8,8 +8,10 @@ group = "nl.astraeus"
version = "1.1.0-SNAPSHOT"
repositories {
mavenLocal()
mavenCentral()
maven {
setUrl("https://gitea.astraeus.nl/api/packages/rnentjes/maven")
}
}
kotlin {