써먹는 웹개발
[IntelliJ] Repository를 내부 Repository로 변경할때 설정한 방법 본문
Developer Tools/IntelliJ & DataGrip
[IntelliJ] Repository를 내부 Repository로 변경할때 설정한 방법
kmhan 2021. 8. 28. 14:58728x90
반응형
1. gradle-wrapper.propeties 수정
1
2
|
distributionUrl=http\://ip번호:port번호/nexus/content/repositories/.gradle/wrapper/dists/gradle-7.1.1-bin/f29rtwfnc96ub43tt7p47zsru/gradle-7.1.1-bin.zip
#distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
|
cs |
2. build.gradle
1
2
3
4
5
|
repository {
maven {
url 'ip번호:port번호/nexus/content/repositories/생성한 nexus 경로'
}
}
|
cs |
728x90
반응형
'Developer Tools > IntelliJ & DataGrip' 카테고리의 다른 글
[Intellij] 서버 2개 한번에 실행(Run)시키는 방법 (0) | 2022.12.16 |
---|---|
[Intellij] trigger 위치 (0) | 2022.11.09 |
[IntelliJ] gitlab push안될때 해결방법 (0) | 2021.08.09 |
[IntelliJ] camel case 변환하는 플러그인과 변환기 (0) | 2021.08.09 |
[Intellij] 특정 시점 기준으로 여러 개의 파일을 복구하는 방법 (0) | 2021.08.09 |
Comments