15 lines
501 B
Markdown
15 lines
501 B
Markdown
#Eclipse #이클립스
|
|
|
|
- settings.xml 생성
|
|
``` xml
|
|
<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://myMine/repository</localRepository>
|
|
<interactiveMode>true</interactiveMode>
|
|
<offline>false</offline>
|
|
</settings>
|
|
```
|
|
- 이클립스 설정 변경
|
|
- User Settings -> settings.xml 경로 선택 |