You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2013/04/12 20:19:41 UTC

svn commit: r1467393 - /accumulo/trunk/pom.xml

Author: ctubbsii
Date: Fri Apr 12 18:19:41 2013
New Revision: 1467393

URL: http://svn.apache.org/r1467393
Log:
ACCUMULO-1269 merge rat check to trunk

Modified:
    accumulo/trunk/pom.xml   (contents, props changed)

Modified: accumulo/trunk/pom.xml
URL: http://svn.apache.org/viewvc/accumulo/trunk/pom.xml?rev=1467393&r1=1467392&r2=1467393&view=diff
==============================================================================
--- accumulo/trunk/pom.xml (original)
+++ accumulo/trunk/pom.xml Fri Apr 12 18:19:41 2013
@@ -691,13 +691,8 @@
     </profile>
     <profile>
       <!-- Automatically check for licenses.
-           Deactivate with -DskipLicenseCheck -->
+           Activate with -P check-licenses -->
       <id>check-licenses</id>
-      <activation>
-        <property>
-          <name>!skipLicenseCheck</name>
-        </property>
-      </activation>
       <build>
         <plugins>
           <plugin>
@@ -836,18 +831,29 @@
       </dependencyManagement>
     </profile>
     <profile>
-      <!-- Seal jars when either the apache-release profile is
-           activated or when tests are skipped -->
+      <!-- Seal jars, skip tests, and do license checks when
+           the apache-release profile is activated. -->
       <id>apache-release</id>
-      <activation>
-        <property>
-          <name>skipTests</name>
-        </property>
-      </activation>
       <properties>
         <sealJars>true</sealJars>
         <skipTests>true</skipTests>
       </properties>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.rat</groupId>
+            <artifactId>apache-rat-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+                <phase>verify</phase>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
     </profile>
   </profiles>
 </project>

Propchange: accumulo/trunk/pom.xml
------------------------------------------------------------------------------
  Merged /accumulo/branches/1.5/pom.xml:r1467321-1467347,1467349,1467351-1467382,1467384-1467392