From 4749557bda2768d6c2b9914a2c2c2421cbb2711b Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Sun, 13 Jul 2025 17:14:30 +0200 Subject: [PATCH] build: add dnpm.dev maven repositories --- build.gradle | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index f9441b6..29e1e85 100644 --- a/build.gradle +++ b/build.gradle @@ -9,8 +9,16 @@ description = 'OS Export-Plugin für das DNPM-Datenmodell 2.1' java.sourceCompatibility = JavaVersion.VERSION_11 repositories { - mavenLocal() 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 {