build: add dnpm.dev maven repositories

This commit is contained in:
2025-07-13 17:14:30 +02:00
parent 1de6aed6c4
commit 4749557bda

View File

@@ -9,8 +9,16 @@ description = 'OS Export-Plugin für das DNPM-Datenmodell 2.1'
java.sourceCompatibility = JavaVersion.VERSION_11 java.sourceCompatibility = JavaVersion.VERSION_11
repositories { repositories {
mavenLocal()
mavenCentral() mavenCentral()
// Ignore the next two maven repositories if you want to use a local build
maven {
url = uri("https://git.dnpm.dev/api/packages/public-snapshots/maven")
}
maven {
url = uri("https://git.dnpm.dev/api/packages/public/maven")
}
// Local repository for local dependency build
mavenLocal()
} }
configurations { configurations {