gradle 내부망 주소로 변경

This commit is contained in:
2026-03-13 14:40:32 +09:00
parent 7430f15697
commit be12366293
94 changed files with 2723 additions and 48 deletions

View File

@@ -29,9 +29,20 @@ configurations {
}
}
//repositories {
// mavenCentral()
// maven { url "https://repo.osgeo.org/repository/release/" }
//}
def repoUrl = System.getProperty("org.gradle.project.repoUrl")
?: System.getenv("ORG_GRADLE_PROJECT_repoUrl")
?: "http://172.16.4.56:18100/repository/maven-public/"
repositories {
mavenCentral()
maven { url "https://repo.osgeo.org/repository/release/" }
maven {
url = uri(repoUrl)
allowInsecureProtocol = true
}
}
dependencies {