maven-wolifecycle-plugin
Version 30.1 by Ulrich Köster on 2006/11/08 06:50
Description
"maven-wolifecycle-plugin" is a plug-in for development of WebObjects applications and frameworks in the context of Maven.
Lifecyle
Lifecyle replacement maven plugin for for WebObjects projects.
For the moment, this project is based on the existing ant stuff. This plugin does need configuration.
Example WOFramework
From the pom.xml
<?xml version="1.0"?>
<project>
...
<packaging>woframework</packaging>
...
<build>
...
<plugins>
<plugin>
<groupId>org.objectstyle.woproject.maven2</groupId>
<artifactId>maven-wolifecycle-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
<extensions>true</extensions>
</plugin>
</plugins>
...
</build>
...
</project>
Example WOApplication
From the pom.xml
<?xml version="1.0"?>
<project>
...
<packaging>woapplication</packaging>
...
<build>
...
<plugins>
<plugin>
<groupId>org.objectstyle.woproject.maven2</groupId>
<artifactId>maven-wolifecycle-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
<extensions>true</extensions>
</plugin>
</plugins>
...
</build>
...
</project>