728x90
1. D:\tomtom\workspace 폴더 생성(이클립스 시작시 여기폴더 지정)
2. D:\tomtom\repository 폴더 생성(maven 관련 리소스 관리)
(1) settings.xml 생성(txt가 아니라 xml로 생성)
(2) settings.xml 내용 추가(표시안에 maven이 저장될 폴더를 지정해줌.)
ex )
<settings xmlns="http:"
<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>D:/tomtom/repository</localRepository>
<interactiveMode>true</interactiveMode>
<offline>false</offline>
</settings>
(3) 이클립스 실행 후
- 이클립스 window>preferences>Maven>User Settings 화면에서 아래와 같이 설정
728x90
'프로그래밍-2 > eclipse' 카테고리의 다른 글
이클립스 테마 및 글꼴(나눔고딕코딩, d2codingfont) 다운 및 설정 (0) | 2019.09.10 |
---|---|
이클립스 유효성 및 한글(UTF-8) , heap status 추가 (0) | 2019.09.10 |
maven Project 생성시 index.jsp 오류(X표시) 해결 (0) | 2019.09.09 |
이클립스에서 자주 쓰고 있는 단축키 - 1 (0) | 2019.08.07 |
이클립스 다운로드 및 eclipse ini 설정 (0) | 2019.08.05 |