From 0408abb890307e6bac2ef9169e13e4570fc27694 Mon Sep 17 00:00:00 2001 From: curry772 Date: Fri, 3 Apr 2026 17:22:56 +0900 Subject: [PATCH] =?UTF-8?q?config:=20local=20reposilite=20=ED=99=98?= =?UTF-8?q?=EA=B2=BD=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 16 +++++++++++----- gradle.properties | 2 ++ 2 files changed, 13 insertions(+), 5 deletions(-) create mode 100644 gradle.properties diff --git a/build.gradle b/build.gradle index ba26ab7..0a0880d 100644 --- a/build.gradle +++ b/build.gradle @@ -9,12 +9,18 @@ group = 'com.eactive.ext.kjb' version = '1.0-SNAPSHOT' def springVersion = "5.3.27" -def nexusUrl = "https://nexus.eactive.synology.me:8090" +def reposiliteUrl = "http://localhost:8080" -repositories { - maven { - url "${nexusUrl}/repository/maven-public/" - allowInsecureProtocol = true +allprojects { + repositories { + maven { + url "${reposiliteUrl}/private" + allowInsecureProtocol = true + credentials { + username = reposiliteUser + password = reposilitePassword + } + } } } diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..62d466b --- /dev/null +++ b/gradle.properties @@ -0,0 +1,2 @@ +reposiliteUser=admin +reposilitePassword=BFoZsHrQU4lmJf9rruDdcsPgE0gltKfRdTjAx04IgvFhrd5q07QwMFZqeLHFv+5n