2015. 4. 2. 11:31
spring
Missing artifact com.oracle:ojdbc14:jar:10.2.0.4.0
pom.xml에서
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.4.0</version>
</dependency>
추가 할려고 하면 생기는 오류
원인은 oracle과 maven 라이센스 문제 떄문에 maven 중앙저장소에서 정보를 받을수 없기 떄문
해결방법
<repositories>
<repository>
<id>mesir-repo</id>
<url>http://mesir.googlecode.com/svn/trunk/mavenrepo</url>
</repository>
</repositories>
문구를 추가해주면 해결 됨
'spring' 카테고리의 다른 글
maven 에러 Missing artifact com.sun.jdmk:jmxtools:jar:1.2.1 (0) | 2015.04.01 |
---|---|
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 |