From dd1af44a1aa65d1d9185c8528d520e801de58923 Mon Sep 17 00:00:00 2001 From: rnentjes Date: Fri, 29 Nov 2024 17:24:40 +0100 Subject: [PATCH] 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. --- build.gradle.kts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 057ab36..543c939 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 {