abarisone
abarisone

Reputation: 3783

Maven Oracle artifacts pom dependencies configuration

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.

Upvotes: 1

Views: 7463

Answers (3)

abarisone
abarisone

Reputation: 3783

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.

Upvotes: 1

Nikolay Rusev
Nikolay Rusev

Reputation: 4230

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

Upvotes: 0

Praba
Praba

Reputation: 1381

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

Upvotes: 0

Related Questions