21
Apr
Maven 2 and wlfullclient.jar
Posted in maven, weblogic | No Comments
This is a short description of how to generate wlfullclient.jar so you can handle all your weblogic dependencies with maven.
1) Generate wlfullclient.jar
Go to the installation folder of your weblogic server and use the jarbuilder-tool:
$> java -jar wljarbuilder.jar
It will now have generated the file wlserver_10.3/server/lib/wlfullclient.jar
2) Add it to your local maven repository:
3) Use it as an dependency - add the following in your pom.xml:
<groupId>weblogic</groupId>
<artifactId>wlfullclient</artifactId>
<version>10.3</version>
<scope>provided</scope>
</dependency>



