Author: fchrist
Date: Wed Jul 13 11:28:39 2011
New Revision: 1145958
URL: http://svn.apache.org/viewvc?rev=1145958&view=rev
Log:
STANBOL-271 Added new profile "release" and added Apache RAT to the verify
phase in this profile.
You need RAT 0.8-SNAPSHOT from http://incubator.apache.org/rat/
Modified:
incubator/stanbol/trunk/pom.xml
Modified: incubator/stanbol/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/pom.xml?rev=1145958&r1=1145957&r2=1145958&view=diff
==============================================================================
--- incubator/stanbol/trunk/pom.xml (original)
+++ incubator/stanbol/trunk/pom.xml Wed Jul 13 11:28:39 2011
@@ -59,7 +59,7 @@
<module>launchers/stateless</module>
<module>launchers/full</module>
<module>integration-tests</module>
- </modules>
+ </modules>
<profiles>
<profile>
@@ -77,6 +77,29 @@
<module>launchers/kres</module>
</modules>
</profile>
+ <profile>
+ <id>release</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <version>0.8-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <phase>verify</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
</project>