Goals available for this plugin:
| Goal | Description |
|---|---|
| weblogic:appc | Run the weblogic appc compiler against an artifact. |
| weblogic:clientgen9 | Runs Client Gen on a given WSDL. This client gen uses the BEA refactored client gen tool first appearing in weblogic 9. This is the preferred client gen tool for Weblogic 9.0 and newer. |
| weblogic:deploy | Deploy an artifact to Weblogic servers(s) or cluster(s). |
| weblogic:help | Display help information on weblogic-maven-plugin. Call mvn weblogic:help -Ddetail=true -Dgoal=<goal-name>to display parameter details. |
| weblogic:jwsc | Runs the JWSC compiler task for web service enabled code. |
| weblogic:listapps | List the atifacts on Weblogic server(s) or cluster(s). |
| weblogic:redeploy | Redeploy artifact on Weblogic server(s) or cluster(s). |
| weblogic:servicegen | Runs Service Gen on a given WSDL. |
| weblogic:start | Start an artifact on Weblogic server(s) or cluster(s). |
| weblogic:stop | Stop an artifact on Weblogic server(s) or cluster(s). |
| weblogic:undeploy | Undeploy artifacts from Weblogic server(s) or cluster(s). |
| weblogic:wsdlgen | This class generates wsdl from ear/war package |
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 2.0 |
| JDK | 1.4 |
| Memory | No minimum requirement. |
| Disk Space | No minimum requirement. |
You should specify the version in your project's plugin configuration:
<project>
...
<build>
<!-- To define the plugin version in your parent POM -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>weblogic-maven-plugin</artifactId>
<version>2.9.5</version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>weblogic-maven-plugin</artifactId>
<version>2.9.5</version>
</plugin>
...
</plugins>
</build>
...
</project>
For more information, see "Guide to Configuring Plug-ins"