Plugin documentation

Goals available for this plugin:

Goal Description
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:appc Run the weblogic appc compiler against an artifact.
weblogic:stop Stop an artifact on Weblogic server(s) or cluster(s).
weblogic:wsdlgen This class generates wsdl from ear/war package
weblogic:clientgen Runs Client Gen on a given WSDL.
weblogic:deploy Deploy an artifact to Weblogic servers(s) or cluster(s).
weblogic:servicegen Runs Service Gen on a given WSDL.
weblogic:listapps List the atifacts on Weblogic server(s) or cluster(s).
weblogic:undeploy Undeploy artifacts from Weblogic server(s) or cluster(s).
weblogic:jwsc Runs the JWSC compiler task for web service enabled code.
weblogic:start Start an artifact on Weblogic server(s) or cluster(s).
weblogic:redeploy Redeploy artifact on Weblogic server(s) or cluster(s).

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven 2.0
JDK 1.1
Memory No minimum requirement.
Disk Space No minimum requirement.

Usage

You could run 'mvn -up' to get the latest version of this plugin, or 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.1<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.1<version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>
For more information, see "Guide to Configuring Plug-ins"