You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2012/02/01 00:45:26 UTC

svn commit: r1238866 - /incubator/isis/trunk/framework/pom.xml

Author: danhaywood
Date: Tue Jan 31 23:45:25 2012
New Revision: 1238866

URL: http://svn.apache.org/viewvc?rev=1238866&view=rev
Log:
ISIS-165: working on fixing RAT violations

Modified:
    incubator/isis/trunk/framework/pom.xml

Modified: incubator/isis/trunk/framework/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/framework/pom.xml?rev=1238866&r1=1238865&r2=1238866&view=diff
==============================================================================
--- incubator/isis/trunk/framework/pom.xml (original)
+++ incubator/isis/trunk/framework/pom.xml Tue Jan 31 23:45:25 2012
@@ -848,16 +848,17 @@ archetype includes this explicit depende
                 <groupId>org.apache.rat</groupId>
                 <artifactId>apache-rat-plugin</artifactId>
                 <configuration>
+                    <addDefaultLicenseMatchers>true</addDefaultLicenseMatchers>
                     <excludeSubProjects>false</excludeSubProjects>
                     <numUnapprovedLicenses>0</numUnapprovedLicenses>
                     <excludes>
-                        <exclude>*.java.hsp</exclude>
-                        <exclude>*.svg</exclude>
-                        <exclude>*.ucd</exclude>
+                        <exclude>**/*.java.hsp</exclude>
+                        <exclude>**/*.svg</exclude>
+                        <exclude>**/*.ucd</exclude>
                     </excludes>
                     <licenses>
 		              <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
-		                <licenseFamilyCategory>DocBook</licenseFamilyCategory>
+		                <licenseFamilyCategory>DOCBK</licenseFamilyCategory>
 		                <licenseFamilyName>DocBook 4.5</licenseFamilyName>
 		                <notes></notes>
 		                <patterns>
@@ -870,11 +871,22 @@ archetype includes this explicit depende
                           <pattern>XML EXCHANGE TABLE MODEL DECLARATION MODULE</pattern>
 		                </patterns>
 		              </license>
+                      <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
+                        <licenseFamilyCategory>AL2  </licenseFamilyCategory>
+                        <licenseFamilyName>Apache License 2.0</licenseFamilyName>
+                        <notes></notes>
+                        <patterns>
+                          <pattern>Licensed to the Apache Software Foundation (ASF) under one</pattern>
+                        </patterns>
+                      </license>
 		            </licenses>
 		            <licenseFamilies>
 		              <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
 		                <familyName>DocBook 4.5</familyName>
 		              </licenseFamily>
+                      <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
+                        <familyName>Apache License 2.0</familyName>
+                      </licenseFamily>
 		            </licenseFamilies>
                 </configuration>
             </plugin>