Author: sgoeschl
Date: Fri Jun 13 11:04:11 2008
New Revision: 667608
URL: http://svn.apache.org/viewvc?rev=667608&view=rev
Log:
Tweaking the M2 build to do something helpful other than failing ....
Modified:
turbine/fulcrum/trunk/parent/pom.xml
Modified: turbine/fulcrum/trunk/parent/pom.xml
URL:
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/parent/pom.xml?rev=667608&r1=667607&r2=667608&view=diff
==============================================================================
--- turbine/fulcrum/trunk/parent/pom.xml (original)
+++ turbine/fulcrum/trunk/parent/pom.xml Fri Jun 13 11:04:11 2008
@@ -130,7 +130,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.4</version>
+ <version>2.3</version>
<configuration>
<encoding>${fulcrum.encoding}</encoding>
<docEncoding>${fulcrum.docEncoding}</docEncoding>
@@ -151,14 +151,6 @@
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
</plugin>
- <plugin>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-build-plugin</artifactId>
- <version>1.0</version>
- <configuration>
-
<commons.release.name>${fulcrum.release.name}</commons.release.name>
- </configuration>
- </plugin>
</plugins>
</pluginManagement>
<plugins>
@@ -265,7 +257,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.4</version>
+ <version>2.3</version>
<configuration>
<aggregate>false</aggregate>
<source>${maven.compile.source}</source>
@@ -337,15 +329,6 @@
</reportSets>
</plugin>
<plugin>
- <!-- generate the changelog report to simplify reviewing the changes
-->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-changelog-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <basedir>${basedir}</basedir>
- </configuration>
- </plugin>
- <plugin>
<!-- generate the PMD reports -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
@@ -366,15 +349,6 @@
<artifactId>taglist-maven-plugin</artifactId>
<version>2.1</version>
</plugin>
- <plugin>
- <!-- generate the changelog report to simplify reviewing the changes
-->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-changelog-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <basedir>${basedir}</basedir>
- </configuration>
- </plugin>
</plugins>
</reporting>
@@ -523,7 +497,26 @@
</plugins>
</build>
</profile>
+
+ <!--
+ Profile to build all Fulcrum M2 components.
+
+ This profile is a convience which can be used, for example, to build all
the component sites:
+ mvn -Pfulcrum site
+
+ or, to clean up:
+ mvn -Pfulcrum clean
+ -->
+ <profile>
+ <id>fulcrum</id>
+ <modules>
+ <module>../commonsemail</module>
+ <module>../testcontainer</module>
+ <module>../yaafi</module>
+ </modules>
+ </profile>
</profiles>
+
<properties>