Dev_Log

[Maven] Missing artifact oracle:ojdbc6:jar:11.2.0.3

LeeDaniel 2021. 6. 17. 15:36
Missing artifact oracle:ojdbc6:jar:11.2.0.3

[에러 발생 상황]
-pom.xml에 ojdbc6 dependency를 추가중에 에러 발생
아니 외않됀데?

✔ Solution

구글링을 한다

 

Oracle JDBC ojdbc6 Jar as a Maven Dependency

I cannot seem to get Maven to bundle the ojdbc6.jar file into my project's war file. I have it working within the POM file when specifying a dependency directly for Hibernate tools. But it won't ...

stackoverflow.com

위 스택오버플로우 페이지에 가보면

pom.xml에 아래와 같이 작성하라는 답변을 확인할 수 있다

적용해보자

<dependencies>
  <dependency>
    <groupId>com.oracle</groupId>
    <artifactId>ojdbc6</artifactId>
    <version>11.2.0.3</version>
  </dependency>
</dependencies>

<repositories>
  <repository>
    <id>codelds</id>
      <url>https://code.lds.org/nexus/content/groups/main-repo</url>
  </repository>
</repositories>

 

적용후

에러가 사라지고 Maven 라이브러리에 잘 추가된 모습이 보인다

 

728x90
반응형