Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 날짜
- 한글
- JSTL
- DB
- 전자정부 표준프레임워크
- 톰캣
- html
- null
- jquery
- 네이버스마트 에디터
- MYSQL
- json
- HTML5
- checbox
- 스크립트
- @RequestBody
- SSL
- 호환성
- 웹 플랫폼 설치 관리자
- maven
- 오라클
- 문자열
- 이클립스
- exception
- php
- RADIO
- switch
- spring form tag
- Oracle
- java
Archives
- Today
- Total
개인적인 정리
settings.xml 본문
이클립스 상에서 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 |
첨부파일로도 올려봐둔다.
출처를 명기하고 싶지만 어디서 퍼왔는지를 잃어버렸다. ^^;;
'전자정부표준프레임워크 > maven' 카테고리의 다른 글
Caused by: java.lang.ClassNotFoundException: org.slf4j.Logger (0) | 2022.07.14 |
---|---|
java.lang.NoClassDefFoundError: javax/json/JsonException (0) | 2022.07.14 |
maven Local repository 위치 변경 (0) | 2022.07.14 |
maven 플러그인 업데이트 (0) | 2022.07.04 |
dependencies.dependency.systemPath... (0) | 2022.07.03 |
Comments