repositories {
maven {
url "http://10.110.1.12:8889/nexus/content/groups/public"
allowInsecureProtocol true
}
mavenCentral()
}
allowInsecureProtocol true
OR
allowInsecureProtocol = true
https://codinglog.tistory.com/157
====================================================================================================
repositories {
mavenCentral()
maven {
url = uri("http://nexus.xxxxx.com/repository/snapshots")
allowInsecureProtocol = true
}
maven {
url = uri("http://nexus.xxxxx.com/repository/public")
allowInsecureProtocol = true
}
}
https://jjeong.tistory.com/1607
'gradle' 카테고리의 다른 글
updatePolicy - gradle (0) | 2023.09.18 |
---|---|
gradle 호환성 (0) | 2023.02.26 |
spring-boot-gradle-plugin (0) | 2023.02.12 |
gradle-maven-exec-plugin (0) | 2022.08.29 |
-plain.jar 생성 방지 (0) | 2022.08.13 |