arrr! thievin' release plugin!

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@290060 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-09-19 04:18:33 +00:00
parent c193b36a3e
commit ab13ed39f3
1 changed files with 30 additions and 2 deletions

View File

@ -15,7 +15,6 @@
<plugin>
<groupId>org.codehaus.modello</groupId>
<artifactId>modello-maven-plugin</artifactId>
<version>RELEASE</version>
<executions>
<execution>
<goals>
@ -39,4 +38,33 @@
<artifactId>plexus-utils</artifactId>
</dependency>
</dependencies>
</project>
<profiles>
<profile>
<id>all-models</id>
<build>
<finalName>${pom.artifactId}-${pom.version}-all</finalName>
<plugins>
<plugin>
<groupId>org.codehaus.modello</groupId>
<artifactId>modello-maven-plugin</artifactId>
<executions>
<execution>
<id>v3</id>
<configuration>
<version>3.0.0</version>
<packageWithVersion>true</packageWithVersion>
</configuration>
<goals>
<goal>xpp3-writer</goal>
<goal>java</goal>
<goal>xpp3-reader</goal>
<goal>xsd</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>