본문 바로가기
프로그램/Etc

[Maven] Missing artifact com.oracle:ojdbc14.jar:10.2.0.4.0

by 로드러너 2014. 4. 16.
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

프로젝트에 ojdbc14.jar 파일을 사용하기 위해서 pom.xml 파일의 <dependencies></dependencies> 태그 사이에 다음 코드를 넣었더니 오류가 납니다.   Missing artifact com.oracle:ojdbc14.jar:10.2.0.4.0


<dependency>

<groupId>com.oracle</groupId>

<artifactId>ojdbc14</artifactId>

<version>10.2.0.4.0</version>

</dependency>

            

Missing artifact com.oracle:ojdbc14.jar:10.2.0.4.0 찾아보니 License 문제 때문이라고 하네요. 오라클과 메이븐의 License 문제 때문에 메이븐의 중앙 저장소에서 받을 수 없답니다.


해결 방법은 pom.xml 파일에 <repositories></repositories> 태그 사이에 다음 코드를 넣어 주면 해결 됩니다.


<repository>

<id>mesir-repo</id>

<url>http://mesir.googlecode.com/svn/trunk/mavenrepo</url>

</repository>