기록하는 개발자

[Spring] Eclipse Maven Dependency 경로 변경 본문

웹 개발/Spring

[Spring] Eclipse Maven Dependency 경로 변경

gitseok 2024. 3. 15. 18:50

pom.xml에 추가한 Dependency가 설치되는 경로를 변경해주었다.

 

WIndow → Preferences → Maven>User Settings

 

settings.xml

기본적으론 .m2/settings.xml 경로에 위치하는데 전자정부 버전별 설정을 확인해야해서 repository경로를 나눠주었다

<?xml version="1.0"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/SETTINGS/1.0.0">
<localRepository>C:\[원하는 repository 경로 입력]\maven/repository</localRepository>
</settings>

 

위처럼 settings.xml에 repository 경로를 입력해야한다.

 

Apply and Close로 설정 완료

Maven Build

프로젝트 우클릭 → Run As → Maven Build

정상적으로 다운로드 되는지 Repository 폴더 확인

 

Comments