install시 에러가 생깁니다.
- 작성자 :
- 가*경
- 작성일 :
- 2011-06-29 13:19:00
- 조회수 :
- 2,534
- 구분 :
- 실행환경
- 진행상태 :
- 완료
Q
다음과 같은 에러가 생기네요
url = http://repo1.maven.org/maven2
Downloading: http://repo1.maven.org/maven2/apache-taglibs/standard/1.1.2/standard-1.1.2.jar
[ERROR]
Transitive dependency resolution for scope: compile has failed for your project.
Error message: Missing:
----------
1) apache-taglibs:standard:jar:1.1.2
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=apache-taglibs -DartifactId=standard -Dversion=1.1.2 -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=apache-taglibs -DartifactId=standard -Dversion=1.1.2 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency:
1) ems_test:ems_test:war:1.0.0
2) apache-taglibs:standard:jar:1.1.2
----------
1 required artifact is missing.
for artifact:
ems_test:ems_test:war:1.0.0
from the specified remote repositories:
atlassian (http://maven.atlassian.com/repository/public/),
egovframe (http://www.egovframe.go.kr/maven/),
mvn2 (http://repo1.maven.org/maven2/),
jboss (http://repository.jboss.com/maven2/),
central (http://repo1.maven.org/maven2)
Group-Id: ems_test
Artifact-Id: ems_test
Version: 1.0.0
From file: C:\workspace\ego\ems_test\pom.xml
url = http://repo1.maven.org/maven2
Downloading: http://repo1.maven.org/maven2/apache-taglibs/standard/1.1.2/standard-1.1.2.jar
[ERROR]
Transitive dependency resolution for scope: compile has failed for your project.
Error message: Missing:
----------
1) apache-taglibs:standard:jar:1.1.2
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=apache-taglibs -DartifactId=standard -Dversion=1.1.2 -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=apache-taglibs -DartifactId=standard -Dversion=1.1.2 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency:
1) ems_test:ems_test:war:1.0.0
2) apache-taglibs:standard:jar:1.1.2
----------
1 required artifact is missing.
for artifact:
ems_test:ems_test:war:1.0.0
from the specified remote repositories:
atlassian (http://maven.atlassian.com/repository/public/),
egovframe (http://www.egovframe.go.kr/maven/),
mvn2 (http://repo1.maven.org/maven2/),
jboss (http://repository.jboss.com/maven2/),
central (http://repo1.maven.org/maven2)
Group-Id: ems_test
Artifact-Id: ems_test
Version: 1.0.0
From file: C:\workspace\ego\ems_test\pom.xml
A
안녕하세요.. 가현경님..
pom.xml에 포함되어 있는 다음 dependency를 삭제하시면 되실 것 같습니다.
<dependency>
<groupId>apache-taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
이 standard는 JSTL에 대한 구현체를 포함하고 있는데.. 최근에는 JSTL이 JSP 표준으로 포함이 되어서.. 실제로는 필요하지 않습니다.
그럼.. 즐거운 하루되십시오.
감사합니다.
pom.xml에 포함되어 있는 다음 dependency를 삭제하시면 되실 것 같습니다.
<dependency>
<groupId>apache-taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
이 standard는 JSTL에 대한 구현체를 포함하고 있는데.. 최근에는 JSTL이 JSP 표준으로 포함이 되어서.. 실제로는 필요하지 않습니다.
그럼.. 즐거운 하루되십시오.
감사합니다.