블로그 이미지
가야금마스터

calendar

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 31

Notice

Tag

2015. 4. 1. 15:07 spring

ArtifactTransferException: Failure to transfer com.sun.jdmk:jmxtools:jar:1.2.1 from https://maven-repository.dev.java.net/nonav/repository was cached in the local repository, resolution will not be reattempted until the update interval of java.net has elapsed or updates are forced. Original error: Could not transfer artifact com.sun.jdmk:jmxtools:jar:1.2.1 from/to java.net (https://maven-repository.dev.java.net/nonav/repository): No connector available to access repository java.net (https://maven-repository.dev.java.net/nonav/repository) of type legacy using the available factories AetherRepositoryConnectorFactory, WagonRepositoryConnectorFactory


Missing artifact com.sun.jdmk:jmxtools:jar:1.2.1


구글링 하면서 라이센스문제라는거 같아서


<exclusion>

<groupId>javax.jms</groupId>

<artifactId>jms</artifactId>

</exclusion>

문구 추가하라고 헀지만 ㅡㅡ 이미 추가했었음 ...

<repository>

  <id>repository.jboss.org-public</id>

  <name>JBoss repository</name>

  <url>https://repository.jboss.org/nexus/content/groups/public</url>

</repository>

추가 해보라고 해서 했지만 달라지는게 없었음...


결론은


maven에서의 log4j의 의존관계 문제란다.... ㅡㅡ;;


<groupId>log4j</groupId>

<artifactId>log4j</artifactId>

<version>1.2.15</version>

1.2.15버전을 사용하면 생기는 문제임 ~  1.2.14버전으로 고쳐주니 에러가 사라지네요~


'spring' 카테고리의 다른 글

Missing artifact com.oracle:ojdbc14:jar:10.2.0.4.0 오류  (0) 2015.04.02
Maven pom.xml dependency를 가진 대상의 scope설정  (0) 2015.04.01
Bean 객체 스캔  (0) 2015.03.31
Annotation  (0) 2015.03.31
Spring Framework 모듈  (0) 2015.03.17
posted by 가야금마스터