You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/07/12 07:08:01 UTC

svn commit: r421123 - in /incubator/activemq/trunk: ./ activeio/ activemq-repository-builder/ activemq-repository-builder/src/ activemq-repository-builder/src/main/ activemq-repository-builder/src/main/assembly/

Author: chirino
Date: Tue Jul 11 22:08:00 2006
New Revision: 421123

URL: http://svn.apache.org/viewvc?rev=421123&view=rev
Log:
Adding a project that can build a m2 repository of all the activemq dependencies.

Added:
    incubator/activemq/trunk/activemq-repository-builder/
    incubator/activemq/trunk/activemq-repository-builder/pom.xml
    incubator/activemq/trunk/activemq-repository-builder/src/
    incubator/activemq/trunk/activemq-repository-builder/src/main/
    incubator/activemq/trunk/activemq-repository-builder/src/main/assembly/
    incubator/activemq/trunk/activemq-repository-builder/src/main/assembly/repo.xml
Modified:
    incubator/activemq/trunk/activeio/pom.xml
    incubator/activemq/trunk/pom.xml

Modified: incubator/activemq/trunk/activeio/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activeio/pom.xml?rev=421123&r1=421122&r2=421123&view=diff
==============================================================================
--- incubator/activemq/trunk/activeio/pom.xml (original)
+++ incubator/activemq/trunk/activeio/pom.xml Tue Jul 11 22:08:00 2006
@@ -22,8 +22,8 @@
       <module>activeio-oneport-jetty</module>
       <module>activeio-aio</module>
       <module>activeio-oneport-openorb</module>
--->
       <module>activeio-jxta</module>
+-->
   </modules>
 
 </project>

Added: incubator/activemq/trunk/activemq-repository-builder/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-repository-builder/pom.xml?rev=421123&view=auto
==============================================================================
--- incubator/activemq/trunk/activemq-repository-builder/pom.xml (added)
+++ incubator/activemq/trunk/activemq-repository-builder/pom.xml Tue Jul 11 22:08:00 2006
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Copyright 2005-2006 The Apache Software Foundation
+   
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+   
+    http://www.apache.org/licenses/LICENSE-2.0
+   
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<project
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xmlns="http://maven.apache.org/POM/4.0.0">
+  
+  <modelVersion>4.0.0</modelVersion>
+  
+  <parent>
+    <groupId>incubator-activemq</groupId>
+    <artifactId>activemq-parent</artifactId>
+    <version>4.1-SNAPSHOT</version>
+  </parent>
+  
+  <artifactId>activemq-repository-builder</artifactId>
+  <packaging>pom</packaging>
+  <name>ActiveMQ :: Repository Builder</name>
+  <description>Puts together a maven 2 repository of all the ActiveMQ artifacts and dependencies</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>incubator-activemq</artifactId>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptor>src/main/assembly/repo.xml</descriptor>
+          <finalName>repository</finalName>
+        </configuration>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>single</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Added: incubator/activemq/trunk/activemq-repository-builder/src/main/assembly/repo.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-repository-builder/src/main/assembly/repo.xml?rev=421123&view=auto
==============================================================================
--- incubator/activemq/trunk/activemq-repository-builder/src/main/assembly/repo.xml (added)
+++ incubator/activemq/trunk/activemq-repository-builder/src/main/assembly/repo.xml Tue Jul 11 22:08:00 2006
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Copyright 2005-2006 The Apache Software Foundation
+   
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+   
+    http://www.apache.org/licenses/LICENSE-2.0
+   
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<assembly>
+  <id>bin</id>
+  <formats>
+    <format>tar.gz</format>
+  </formats>
+  <repositories>
+    <repository>
+      <outputDirectory>repository</outputDirectory>
+      <includeMetadata>true</includeMetadata>
+      <!--
+      <groupVersionAlignments>
+        <groupVersionAlignment>
+          <id>incubator-activemq</id>
+          <version>${project.version}</version>
+        </groupVersionAlignment>
+      </groupVersionAlignments>
+      -->
+    </repository>
+  </repositories>
+</assembly>

Modified: incubator/activemq/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/pom.xml?rev=421123&r1=421122&r2=421123&view=diff
==============================================================================
--- incubator/activemq/trunk/pom.xml (original)
+++ incubator/activemq/trunk/pom.xml Tue Jul 11 22:08:00 2006
@@ -221,6 +221,12 @@
             </dependency>
             <dependency>
                 <groupId>${pom.groupId}</groupId>
+                <artifactId>incubator-activemq</artifactId>
+                <version>${pom.version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${pom.groupId}</groupId>
                 <artifactId>activeio-core</artifactId>
                 <version>3.0-SNAPSHOT</version>
             </dependency>