Since the Weblogic plugin uses some third party jars that are not hosted on the maven repositories you will need to manually install the jars into your local repository yourself. This document decsribes that process for both the 9.0 plugin.
The recommended Basic Weblogic installation process is as follows.
Copy the weblogic.jar and webservices.jar from your Weblogic installation BEA_HOME/weblogicxx/server/lib into a directory and rename the files as follows: weblogic-9.0.jar webservices-9.0.jar You can use any version that begins with a 9 or above such as 9.2.1, etc. The plugin will recognize any version above 9 as valid for this plugin. Then run the following commands from that directory to install the jar into your local repository mvn install:install-file -DgroupId=weblogic -DartifactId=weblogic -Dversion=9.0 -Dpackaging=jar -Dfile=weblogic-9.0.jar mvn install:install-file -DgroupId=weblogic -DartifactId=webservices -Dversion=9.0 -Dpackaging=jar -Dfile=webservices-9.0.jar Now you should be ready to run!!!