[oracle] Missing artifact ojdbc:ojdbc:jar:14:compile(repository 추가 : mesir-repo)
oracle 2013. 4. 22. 17:58오라클 연결을 위해 ojdbc.jar 파일이 필요한데 Maven에서 제공하는 jar 사용하면 계속
Missing artifact ojdbc:ojdbc:jar:14:compile 오류가 발생한다.
오류 이유는 저작권 때문이라 함
(출처 : http://www.jroller.com/mert/entry/oracle_s_ojdbc14_jar_mesir)
해결
pom.xml 을 연 후
1. 저장소를 추가한다.
<repository>
<id>mesir-repo</id>
<url>http://mesir.googlecode.com/svn/trunk/mavenrepo</url>
</repository>
2. <dependency> 를 추가한다.
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>10.2.0.4.0</version>
</dependency>
'oracle' 카테고리의 다른 글
[oracle] 오라클 스크립트 작성 및 실행( sql> @파일 ) (0) | 2013.05.02 |
---|---|
[oracle] oracle 함수(nvl, nvl2) (0) | 2013.04.18 |
[oracle] Cannot load JDBC driver class ‘oracle.jdbc.driver.OracleDriver’ (0) | 2013.04.18 |
[oracle] ORA-00911: 문자가 부적합합니다 (0) | 2013.04.18 |
[oracle] Dynamic View(V$SESSION, V$PROCESS) (0) | 2013.04.01 |