You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
930 B
Groovy
30 lines
930 B
Groovy
|
3 weeks ago
|
rootProject.name = 'springbatch-test'
|
||
|
|
|
||
|
|
// =====================================================
|
||
|
|
// Plugin Management for Nexus (폐쇄망 환경)
|
||
|
|
// =====================================================
|
||
|
|
// 폐쇄망 환경에서 Gradle Plugin도 Nexus를 통해 다운로드
|
||
|
|
// Uncomment below section when using Nexus in closed network
|
||
|
|
/*
|
||
|
|
pluginManagement {
|
||
|
|
repositories {
|
||
|
|
maven {
|
||
|
|
url = "${nexusUrl}/repository/gradle-plugins/"
|
||
|
|
credentials {
|
||
|
|
username = "${nexusUsername}"
|
||
|
|
password = "${nexusPassword}"
|
||
|
|
}
|
||
|
|
allowInsecureProtocol = false // HTTP 사용 시 true
|
||
|
|
}
|
||
|
|
maven {
|
||
|
|
url = "${nexusUrl}/repository/maven-public/"
|
||
|
|
credentials {
|
||
|
|
username = "${nexusUsername}"
|
||
|
|
password = "${nexusPassword}"
|
||
|
|
}
|
||
|
|
allowInsecureProtocol = false
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
*/
|