일반적으로 내 로컬 저장소 주소로이 변경되었습니다.
maven settings.xml 또는 프로젝트 POM에서 리포를 구성해야합니다.
우리는 항상 동일한 내부 repo를 사용하기 때문에 Maven settings.xml, 더 정확하게는 "profiles"섹션에서이 작업을 수행했습니다.
<profiles>
<profile>
<id>artifactory</id>
<repositories>
<repository>
<id>central</id>
<name>libs-releases</name>
<url>http://repo.example.com/libs-releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>snapshots</id>
<name>libs-snapshots</name>
<url>http://repo.example.com/libs-snapshots</url>
<snapshots />
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>plugins-releases</name>
<url>http://repo.example.com/plugins-releases</url>
<snapshots><enabled>false</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>artifactory</activeProfile>
</activeProfiles>
: 여기
참조에 대한 내 설정이다