You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by an...@apache.org on 2015/03/05 15:49:49 UTC

[3/4] activemq-6 git commit: Build bin/source distro together

Build bin/source distro together


Project: http://git-wip-us.apache.org/repos/asf/activemq-6/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-6/commit/a4f5d747
Tree: http://git-wip-us.apache.org/repos/asf/activemq-6/tree/a4f5d747
Diff: http://git-wip-us.apache.org/repos/asf/activemq-6/diff/a4f5d747

Branch: refs/heads/master
Commit: a4f5d747ef1e276dade54a6114f1257bc15c1755
Parents: 526135d
Author: Martyn Taylor <mt...@redhat.com>
Authored: Thu Mar 5 14:44:02 2015 +0000
Committer: Martyn Taylor <mt...@redhat.com>
Committed: Thu Mar 5 14:44:02 2015 +0000

----------------------------------------------------------------------
 distribution/activemq/pom.xml | 52 ++++++++++++--------------------------
 1 file changed, 16 insertions(+), 36 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-6/blob/a4f5d747/distribution/activemq/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/activemq/pom.xml b/distribution/activemq/pom.xml
index 5bc30e7..a6a9e75 100644
--- a/distribution/activemq/pom.xml
+++ b/distribution/activemq/pom.xml
@@ -184,38 +184,6 @@
          <build>
          </build>
       </profile>
-      <profile>
-         <id>source-release</id>
-         <activation>
-            <property>
-               <name>apache-release</name>
-            </property>
-         </activation>
-         <build>
-            <plugins>
-               <plugin>
-                  <groupId>org.apache.maven.plugins</groupId>
-                  <artifactId>maven-deploy-plugin</artifactId>
-               </plugin>
-               <plugin>
-                  <artifactId>maven-assembly-plugin</artifactId>
-                  <version>2.2</version>
-                  <configuration>
-                     <descriptor>src/main/assembly/source-assembly.xml</descriptor>
-                     <tarLongFileMode>gnu</tarLongFileMode>
-                  </configuration>
-                  <executions>
-                     <execution>
-                        <phase>package</phase>
-                        <goals>
-                           <goal>single</goal>
-                        </goals>
-                     </execution>
-                  </executions>
-               </plugin>
-            </plugins>
-         </build>
-      </profile>
    </profiles>
 
    <build>
@@ -233,12 +201,24 @@
          <plugin>
             <artifactId>maven-assembly-plugin</artifactId>
             <version>2.2</version>
-            <configuration>
-               <descriptor>src/main/assembly/dep.xml</descriptor>
-               <tarLongFileMode>gnu</tarLongFileMode>
-            </configuration>
             <executions>
                <execution>
+                  <id>source</id>
+                  <configuration>
+                     <descriptor>src/main/assembly/source-assembly.xml</descriptor>
+                     <tarLongFileMode>gnu</tarLongFileMode>
+                  </configuration>
+                  <phase>package</phase>
+                  <goals>
+                     <goal>single</goal>
+                  </goals>
+               </execution>
+               <execution>
+                 <id>bin</id>
+                  <configuration>
+                     <descriptor>src/main/assembly/dep.xml</descriptor>
+                     <tarLongFileMode>gnu</tarLongFileMode>
+                  </configuration>
                   <phase>package</phase>
                   <goals>
                      <goal>single</goal>