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 |
Tags
- IntelliJ
- Spring Batch 강의
- 미국주식
- docker mysql
- 애드센스 수익
- spring Annotation
- Spring
- JDK1.3
- MYSQL
- 티스토리 광고 수익
- 도커
- Vue 배우기
- intelliJ plugin
- docker
- docker 명령어
- python 기초
- python
- Vue
- Python 기본편
- Vue 강의
- apache log4j
- Spring Batch
- 젠킨스
- AES256
- Vue 알아보기
- 미국 배당주
- spring boot 시작
- scrapy
- 구글 애드센스 수익
- gradle
Archives
나만의공간
Eclipse 에서 Maven Project 생성시 오류가 maven-resources-plugin:2.6 이거 관련 오류 일때 조치 사항 본문
IT/Maven
Eclipse 에서 Maven Project 생성시 오류가 maven-resources-plugin:2.6 이거 관련 오류 일때 조치 사항
밥알이 2016. 5. 13. 18:23Maven 프로젝트 생성시 관련 정보를 못가져올 경우 setting.xml을 아래로 변경해서 만들면 정상적으로 관련 정보를 가져 올 수 있음.
관련 오류 메세지 : could not calculate build plan
maven-resources-plugin:2.6
<!--?xml version="1.0" encoding="UTF-8"?--> <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"> <mirrors> <mirror> <id>UK</id> <name>UK Central</name> <url>http://uk.maven.org/maven2</url> <mirrorof>central</mirrorof> </mirror> </mirrors> </settings>
Comments