개인적인 정리

settings.xml 본문

전자정부표준프레임워크/maven

settings.xml

yeon.Biju 2022. 7. 14. 15:53

이클립스 상에서 maven Local repository 경로를 변경하기 위해서는 settings.xml이 필요하다.

기본 설정이 아래와 같기 때문에 .m2 밑에 꼭 settings.xml이 있는 것 같다. 하지만 없다.

 

그래서 간단히 settings.xml을 기록해둔다.

1
2
3
4
5
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> 
    <localRepository>C:\eclipse\maven\repository</localRepository> 
    <interactiveMode>true</interactiveMode> 
    <offline>false</offline> 
</settings>
cs

첨부파일로도 올려봐둔다.

출처를 명기하고 싶지만 어디서 퍼왔는지를 잃어버렸다. ^^;;

settings.xml
0.00MB

 

Comments