You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by se...@apache.org on 2013/07/08 23:34:35 UTC

svn commit: r1500974 - /creadur/rat/trunk/pom.xml

Author: sebb
Date: Mon Jul  8 21:34:35 2013
New Revision: 1500974

URL: http://svn.apache.org/r1500974
Log:
We don't need the standard source archive; packaging is done in the CLI module

Modified:
    creadur/rat/trunk/pom.xml

Modified: creadur/rat/trunk/pom.xml
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/pom.xml?rev=1500974&r1=1500973&r2=1500974&view=diff
==============================================================================
--- creadur/rat/trunk/pom.xml (original)
+++ creadur/rat/trunk/pom.xml Mon Jul  8 21:34:35 2013
@@ -484,6 +484,29 @@ agnostic home for software distribution 
 
   <profiles>
     <profile>
+       <id>apache-release</id>
+      <build>
+        <plugins>
+          <!-- Skip the source-release artifact here; we create it under the CLI module -->
+          <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>source-release-assembly</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <configuration>
+                  <skipAssembly>true</skipAssembly>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
       <id>rat</id>
       <build>
         <plugins>