Author: dennisl
Date: Sat Sep 6 21:13:12 2014
New Revision: 1622935
URL: http://svn.apache.org/r1622935
Log:
[WHISKER-12] Cleanup Build Infrastructure
- Always run Rat
Modified:
creadur/whisker/trunk/apache-whisker-cli/pom.xml
creadur/whisker/trunk/pom.xml
Modified: creadur/whisker/trunk/apache-whisker-cli/pom.xml
URL:
http://svn.apache.org/viewvc/creadur/whisker/trunk/apache-whisker-cli/pom.xml?rev=1622935&r1=1622934&r2=1622935&view=diff
==============================================================================
--- creadur/whisker/trunk/apache-whisker-cli/pom.xml (original)
+++ creadur/whisker/trunk/apache-whisker-cli/pom.xml Sat Sep 6 21:13:12 2014
@@ -73,6 +73,21 @@ Build
-->
<build>
<finalName>apache-whisker-${project.version}</finalName>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>dependency-reduced-pom.xml</exclude>
+ <exclude>src/main/resources/META-INF/jdom_LICENSE</exclude>
+ <exclude>src/main/resources/META-INF/jdom_NOTICE</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -107,33 +122,6 @@ Build
</plugin>
</plugins>
</build>
- <profiles>
- <profile>
- <id>rat</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.rat</groupId>
- <artifactId>apache-rat-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>dependency-reduced-pom.xml</exclude>
- <exclude>src/main/resources/META-INF/jdom_LICENSE</exclude>
- <exclude>src/main/resources/META-INF/jdom_NOTICE</exclude>
- </excludes>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
<!--
Modified: creadur/whisker/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/creadur/whisker/trunk/pom.xml?rev=1622935&r1=1622934&r2=1622935&view=diff
==============================================================================
--- creadur/whisker/trunk/pom.xml (original)
+++ creadur/whisker/trunk/pom.xml Sat Sep 6 21:13:12 2014
@@ -282,6 +282,17 @@
</pluginManagement>
<plugins>
<plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.11</version>
@@ -317,30 +328,6 @@
</extension>
</extensions>
</build>
- <profiles>
- <profile>
- <id>rat</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.rat</groupId>
- <artifactId>apache-rat-plugin</artifactId>
- <configuration>
- <excludes>
- </excludes>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
<!-- ================================ Project information -->
<name>Apache Whisker</name>
<description>Apache Whisker wrangles legal documentation for composed
applications.</description>