config: local reposilite 환경으로 변경

This commit is contained in:
curry772
2026-04-03 17:22:56 +09:00
parent 58cf16dbcc
commit 9d1d74acb9
4 changed files with 11 additions and 2 deletions
+6 -2
View File
@@ -17,13 +17,17 @@ sourceCompatibility = "1.8"
targetCompatibility = "1.8"
def nexusUrl = "https://nexus.eactive.synology.me:8090"
def reposiliteUrl = "http://localhost:8080"
allprojects {
repositories {
maven {
url "${nexusUrl}/repository/maven-public/"
url "${reposiliteUrl}/private"
allowInsecureProtocol = true
credentials {
username = reposiliteUser
password = reposilitePassword
}
}
}
}