Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

ㄱㅂㅎㅈ

Missing artifact com.oracle:ojdbc6:jar:12.2.0.1 본문

개발

Missing artifact com.oracle:ojdbc6:jar:12.2.0.1

백숲 2019. 10. 24. 17:09

Maven pom.xml 에서 오류가 나길래 찾아봤다.

Maven 의 기본 저장소는 https://repo1.maven.org/maven2/. Maven 홈페이지에 Central Repository 라고 나온다.

 

이 기본 저장소는 디폴트 값이라 따로 설정하지 않아서 잊고 있었는데 ojdbc6 같은 경우에는 이 기본 저장소에 포함되어 있지 않다. 이런 경우 Maven 홈페이지에서 ojdbc6의 Repository로 등록되어있는 저장소를 등록해 줘야 한다.

<repositories>
	<repository>
		<id>oracle</id>
		<name>ORACLE JDBC Repository</name>
		<url>https://packages.atlassian.com/maven-3rdparty/</url>
	</repository>
</repositories>

 

이런 식으로 Repository 를 추가해준다.

Comments