Plugin Documentation

Goals available for this plugin:

GoalDescription
weblogic:appcRun the weblogic appc compiler against an artifact.
weblogic:clientgen9Runs 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:deployDeploy an artifact to Weblogic servers(s) or cluster(s).
weblogic:helpDisplay help information on weblogic-maven-plugin.
Call
  mvn weblogic:help -Ddetail=true -Dgoal=<goal-name>
to display parameter details.
weblogic:jwscRuns the JWSC compiler task for web service enabled code.
weblogic:listappsList the atifacts on Weblogic server(s) or cluster(s).
weblogic:redeployRedeploy artifact on Weblogic server(s) or cluster(s).
weblogic:servicegenRuns Service Gen on a given WSDL.
weblogic:startStart an artifact on Weblogic server(s) or cluster(s).
weblogic:stopStop an artifact on Weblogic server(s) or cluster(s).
weblogic:undeployUndeploy artifacts from Weblogic server(s) or cluster(s).
weblogic:wsdlgenThis class generates wsdl from ear/war package

System Requirements

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

Maven2.0
JDK1.4
MemoryNo minimum requirement.
Disk SpaceNo minimum requirement.

Usage

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"