Missing artifact com.oracle:ojdbc6:jar:11.2.0.3

Viewed 53889

enter image description hereI am a beginner to Maven project. In my project, I am getting the error Missing artifact com.oracle:ojdbc6:jar:11.2.0.3, even though the jar was present in my repository at the correct folder. Can anyone help with this, please?

4 Answers
<repositories>
        <repository>
            <id>spring-releases</id>
            <url>https://repo.spring.io/libs-release</url>
        </repository>
    </repositories>

Should solve the issue if you are using spring boot

Once you face the issue . Check in your maven user settings path . This will be a path something like :

C:\Users\ user name\ .m2\repository

Open the location and go to oracle\ojdbc6\11.2.0.3 folder and put the .jar on that location .Return back to eclipse perform maven update and your issue will be gone.

Related