Author: veithen Date: Wed Dec 15 23:18:53 2010 New Revision: 1049741 URL: http://svn.apache.org/viewvc?rev=1049741&view=rev Log: Skip the default source release assembly configured in org.apache:apache because we have our own source distribution.
Modified: axis/axis2/java/sandesha/trunk/pom.xml Modified: axis/axis2/java/sandesha/trunk/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/pom.xml?rev=1049741&r1=1049740&r2=1049741&view=diff ============================================================================== --- axis/axis2/java/sandesha/trunk/pom.xml (original) +++ axis/axis2/java/sandesha/trunk/pom.xml Wed Dec 15 23:18:53 2010 @@ -149,6 +149,34 @@ </pluginManagement> </build> + <profiles> + <profile> + <id>apache-release</id> + <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> + <reporting> <plugins> <plugin>