Plugin Documentation

Goals available for this plugin:

Goal Description
oc4j:deployEar Deploy ear to OC4J.
oc4j:deployWar Deploy war to OC4J.
oc4j:restart Restart OC4J.
oc4j:shutdown Shutdown OC4J.
oc4j:startApplication Start an application in OC4J.
oc4j:stopApplication Stop an application running in OC4J.
oc4j:undeployApplication Undeploy application from OC4J.

System Requirements

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

Maven 2.0.9
JDK 1.5
Memory No minimum requirement.
Disk Space No 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>com.ashlux</groupId>
          <artifactId>oc4j-maven-plugin</artifactId>
          <version>0.2</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>com.ashlux</groupId>
        <artifactId>oc4j-maven-plugin</artifactId>
        <version>0.2</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"