Programing/egovFramework
이클립스 pom.xml Missing artifact com.oracle:ojdbc14:jar:10.2.0.4.0 해결방법
리커니
2016. 12. 19. 19:46
반응형
이클립스 pom.xml Missing artifact com.oracle:ojdbc14:jar:10.2.0.4.0 해결방법
프로젝트를 새로 받았을 때 maven 오류 발생
해결 방법은 아래와 같다.
pom.xml 에 아래 repository, dependency 추가
1
2
3
4
5
6
7
8
9
10
11 |
<repository>
<id>mesir-repo</id>
<url>http://mesir.googlecode.com/svn/trunk/mavenrepo</url>
</repository>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.4.0</version>
</dependency>
|
cs |
반응형