Maven ojdbc configuration error

2019-08-04 08:39发布

So I have a project and I try to build it with Maven. One of my dependencies is this:

<dependency>
        <groupId>com.oracle</groupId>
        <artifactId>ojdbc6</artifactId>
</dependency>

I have the Oracle driver installed and I also have it in my local repo. I made sure to put it there manually. And still when I want to build my project I get this error.

[ERROR] Failed to execute goal on project bla: Could not resolve dependencies for project dbla:jar:0.0.1-SNAPSHOT: Failure to find com.oracle:ojdbc6:jar:11.2.0.4 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]

Does anybody have any idea why? Do I have to check somewhere else or did I miss something?

1条回答
我只想做你的唯一
2楼-- · 2019-08-04 09:19

Ojdbc6 driver is not in a public maven repository. Check this.

If you can use Ojdbc7, it was recently added by Oracle to maven public repository, so you can have a try.

查看更多
登录 后发表回答