Author: rharo
Date: Wed Sep 7 09:17:38 2016
New Revision: 1759569
URL: http://svn.apache.org/viewvc?rev=1759569&view=rev
Log:
STANBOL-1453: Adding and Configuring apache-release profile for main
stanbol-reactor maven file
Modified:
stanbol/trunk/pom.xml
Modified: stanbol/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/stanbol/trunk/pom.xml?rev=1759569&r1=1759568&r2=1759569&view=diff
==============================================================================
--- stanbol/trunk/pom.xml (original)
+++ stanbol/trunk/pom.xml Wed Sep 7 09:17:38 2016
@@ -188,7 +188,33 @@
</plugins>
</build>
</profile>
-
+ <profile>
+ <id>apache-release</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludeSubProjects>true</excludeSubProjects>
+ <excludes>
+ <!-- exclude hidden and dummy files -->
+ <exclude>**/.*</exclude>
+ <exclude>PLAYGROUND.txt</exclude>
+ <exclude>**/src/license/THIRD-PARTY.properties</exclude>
+ <!-- unstable and not release relevant stuff -->
+ <exclude>contrib/**</exclude>
+ <exclude>conventions/**</exclude>
+ <exclude>releasing/**</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
</project>