반응형
1. ISSUE LOG
Could not resolve all dependencies for configuration ':classpath'.
> Authentication scheme 'all'(Authentication) is not supported by protocol 'file'
2. Error 위치
gradle.properties
nexusUrl="http://nexus.something.com"
nexusUser="someone"
nexusPassword="somepassword"
build.gradle
repositories {
maven {
url '$nexusUrl'
allowInsecureProtocol = true
credentials {
username = project.nexusUser
password = project.nexusPassword
}
}
mavenCentral()
}
3. resolved
해결방법은 간단했다. 작은따옴표('') 사용해서 문제
변수사용시 큰따옴표("") 사용해야 합니다.
repositories {
maven {
url "$nexusUrl"
allowInsecureProtocol = true
credentials {
username = project.nexusUser
password = project.nexusPassword
}
}
mavenCentral()
}
반응형
'기록' 카테고리의 다른 글
[Vue.js] 뷰 인스턴스 생명주기(Life Cycle) (0) | 2022.10.04 |
---|---|
[intellij] 학생인증해서 무료로 쓰자! (0) | 2022.06.27 |
[Window]윈도우 환경에 SDKMAN 설치하기 (feat.gitBash) (0) | 2022.04.13 |
코딩테스트 대비용 SQL 문법정리 (feat. programmers) (1) | 2022.03.30 |
[postgres] pgadmin4로 backup, restore하기 (0) | 2022.03.07 |