You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by sh...@apache.org on 2011/01/03 13:37:03 UTC

svn commit: r1054595 - in /axis/axis2/java/rampart/branches/1_5_x: modules/distribution/pom.xml pom.xml

Author: shankar
Date: Mon Jan  3 12:37:02 2011
New Revision: 1054595

URL: http://svn.apache.org/viewvc?rev=1054595&view=rev
Log:
Modifying to use org.apache.apache version 8 as the parent

Modified:
    axis/axis2/java/rampart/branches/1_5_x/modules/distribution/pom.xml
    axis/axis2/java/rampart/branches/1_5_x/pom.xml

Modified: axis/axis2/java/rampart/branches/1_5_x/modules/distribution/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/rampart/branches/1_5_x/modules/distribution/pom.xml?rev=1054595&r1=1054594&r2=1054595&view=diff
==============================================================================
--- axis/axis2/java/rampart/branches/1_5_x/modules/distribution/pom.xml (original)
+++ axis/axis2/java/rampart/branches/1_5_x/modules/distribution/pom.xml Mon Jan  3 12:37:02 2011
@@ -57,13 +57,12 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-assembly-plugin</artifactId>
-                <version>2.2-beta-1</version>
                 <executions>
                     <execution>
                         <id>distribution-package</id>
                         <phase>package</phase>
                         <goals>
-                            <goal>attached</goal>
+                            <goal>single</goal>
                         </goals>
                         <configuration>
                             <descriptors>

Modified: axis/axis2/java/rampart/branches/1_5_x/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/rampart/branches/1_5_x/pom.xml?rev=1054595&r1=1054594&r2=1054595&view=diff
==============================================================================
--- axis/axis2/java/rampart/branches/1_5_x/pom.xml (original)
+++ axis/axis2/java/rampart/branches/1_5_x/pom.xml Mon Jan  3 12:37:02 2011
@@ -349,6 +349,28 @@
                 <module>modules/documentation</module>
                 <module>modules/distribution</module>
             </modules>
+			<build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-assembly-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <!-- Override the execution defined in org.apache:apache
+                                     so that the source-release assembly is not built.
+                                     We define our own source distribution in modules/distribution. -->
+                                <id>source-release-assembly</id>
+                                <configuration>
+                                    <phase>package</phase>
+                                    <goals>
+                                        <goal>single</goal>
+                                    </goals>
+                                    <skipAssembly>true</skipAssembly>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
         </profile>
     </profiles>