Maven Oracle artifacts pom dependencies configuration

7.2k views Asked by At

I have a Java maven project on which I'm currently working on that requires an Oracle weblogic dependency for Weblogic full client (wlfullclient.jar).

I know that there is a brand new Oracle Maven repository (that is in fact already proxied by our Nexus) but unfortunately it is not browsable.

Where can I find the right dependency information in order to insert it in my project pom in terms of GAV parameters (Group ID, Artifact, Version)? Is this information published anywhere?

At the moment, as a temporary workaround, I got this library from the Oracle Weblogic 12c server and put in into a 3rd party hosted repository on my Nexus.

3

There are 3 answers

1
abarisone On BEST ANSWER

I finally managed to find a site which mirrors Oracle Maven index, so I've been able to find out the right dependencies GAV parameters I have to use in my poms. A couple of examples:

<dependency>
    <groupId>com.oracle.weblogic</groupId>
    <artifactId>wlfullclient</artifactId>
    <version>12.1.0.1</version>
</dependency>
<dependency>
    <groupId>com.oracle</groupId>
    <artifactId>ojdbc7</artifactId>
    <version>12.1.0.1</version>
</dependency>

Notice that this index site seems quite up-to-date since it contains artifacts pertaining to version 12.1.0.2 and some of them have been updated on September 14th.

0
Praba On

Looks like they are not having a browser viewable list - https://community.oracle.com/thread/3650312 .

0
Nikolay Rusev On

you should use repository browser provided by Netbeans. See here https://blogs.oracle.com/WebLogicServer/entry/oracle_maven_repository_index_now