You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by hi...@apache.org on 2012/01/02 07:40:14 UTC

svn commit: r1226354 - in /synapse/branches/2.1: modules/distribution/pom.xml modules/distribution/src/main/assembly/bin.xml pom.xml

Author: hiranya
Date: Mon Jan  2 06:40:13 2012
New Revision: 1226354

URL: http://svn.apache.org/viewvc?rev=1226354&view=rev
Log:
Disabling root level source distro built

Modified:
    synapse/branches/2.1/modules/distribution/pom.xml
    synapse/branches/2.1/modules/distribution/src/main/assembly/bin.xml
    synapse/branches/2.1/pom.xml

Modified: synapse/branches/2.1/modules/distribution/pom.xml
URL: http://svn.apache.org/viewvc/synapse/branches/2.1/modules/distribution/pom.xml?rev=1226354&r1=1226353&r2=1226354&view=diff
==============================================================================
--- synapse/branches/2.1/modules/distribution/pom.xml (original)
+++ synapse/branches/2.1/modules/distribution/pom.xml Mon Jan  2 06:40:13 2012
@@ -208,7 +208,7 @@
                         <configuration>
                             <descriptors>
                                 <descriptor>src/main/assembly/bin.xml</descriptor>
-                                <!--<descriptor>src/main/assembly/src.xml</descriptor>-->
+                                <descriptor>src/main/assembly/src.xml</descriptor>
                             </descriptors>
                             <finalName>synapse-${synapse.version}</finalName>
                         </configuration>

Modified: synapse/branches/2.1/modules/distribution/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/synapse/branches/2.1/modules/distribution/src/main/assembly/bin.xml?rev=1226354&r1=1226353&r2=1226354&view=diff
==============================================================================
--- synapse/branches/2.1/modules/distribution/src/main/assembly/bin.xml (original)
+++ synapse/branches/2.1/modules/distribution/src/main/assembly/bin.xml Mon Jan  2 06:40:13 2012
@@ -21,7 +21,7 @@
     <id>bin</id>
     <includeBaseDirectory>false</includeBaseDirectory>
     <formats>
-        <!--<format>tar.gz</format>-->
+        <format>tar.gz</format>
         <format>zip</format>
     </formats>
 

Modified: synapse/branches/2.1/pom.xml
URL: http://svn.apache.org/viewvc/synapse/branches/2.1/pom.xml?rev=1226354&r1=1226353&r2=1226354&view=diff
==============================================================================
--- synapse/branches/2.1/pom.xml (original)
+++ synapse/branches/2.1/pom.xml Mon Jan  2 06:40:13 2012
@@ -160,6 +160,31 @@
                 </repository>
             </repositories>
         </profile>
+        <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>
 
     <pluginRepositories>