반응형
pom.xml ojdbc dependency 에러 해결법 how to solve ojdbc dependency error
전자정부 프레임워크 DB 세팅시
pom.xml 에 dependency를 추가시 Missing artifact ojdbc:ojdbc:jar:14 에러 발생.
-- 에러 발생부분.
1
2
3
4
5
6
7 |
<dependency>
<groupId>ojdbc</groupId>
<artifactId>ojdbc</artifactId>
<version>14</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ojdbc-14.jar</systemPath>
</dependency> |
-- 위의 부분을 아래와 같이 수정 하고 repositories 추가
1
2
3
4
5 |
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.4.0</version>
</dependency> |
cs |
--------------------------------------------------------------------------
기존 repositories 안에 아래의 repository 추가.
1
2
3
4
5
6 |
<repositories>
<repository>
<id>mesir-repo</id>
<url>http://mesir.googlecode.com/svn/trunk/mavenrepo</url>
</repository>
</repositories> |
cs |
해결.
반응형
'Programing > egovFramework' 카테고리의 다른 글
전자정부프레임워크 egov ibatis 복수의 디비 커넥션 설정 방법 (0) | 2016.10.06 |
---|---|
Hot Deploy란 이클립스 hot deploy 설정방법 톰캣 재실행 없이 class 변경사항 적용 (0) | 2016.08.31 |
이클립스 메모리 늘리는 방법 an internal error occurred during: "Updating javascript index 에러 해결법 (0) | 2016.03.10 |
taglibs 에러 해결법 javax.servlet.jsp.jspexception cannot be resolved to a type (1) | 2015.12.28 |
전자정부프레임워크 log4j2.xml 콘솔에 sql 찍는 방법 (0) | 2015.11.25 |
댓글