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 2009/06/01 19:12:19 UTC

svn commit: r780728 - in /activemq/sandbox/activemq-flow: ./ activemq-queue/ activemq-queue/src/ activemq-queue/src/main/ activemq-queue/src/main/java/ activemq-queue/src/main/resources/ activemq-queue/src/test/ activemq-queue/src/test/java/ activemq-q...

Author: chirino
Date: Mon Jun  1 17:12:18 2009
New Revision: 780728

URL: http://svn.apache.org/viewvc?rev=780728&view=rev
Log:
adding queue module

Added:
    activemq/sandbox/activemq-flow/activemq-queue/
    activemq/sandbox/activemq-flow/activemq-queue/pom.xml
    activemq/sandbox/activemq-flow/activemq-queue/src/
    activemq/sandbox/activemq-flow/activemq-queue/src/main/
    activemq/sandbox/activemq-flow/activemq-queue/src/main/java/
    activemq/sandbox/activemq-flow/activemq-queue/src/main/resources/
    activemq/sandbox/activemq-flow/activemq-queue/src/test/
    activemq/sandbox/activemq-flow/activemq-queue/src/test/java/
    activemq/sandbox/activemq-flow/activemq-queue/src/test/resources/
Modified:
    activemq/sandbox/activemq-flow/pom.xml

Added: activemq/sandbox/activemq-flow/activemq-queue/pom.xml
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-flow/activemq-queue/pom.xml?rev=780728&view=auto
==============================================================================
--- activemq/sandbox/activemq-flow/activemq-queue/pom.xml (added)
+++ activemq/sandbox/activemq-flow/activemq-queue/pom.xml Mon Jun  1 17:12:18 2009
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8"?>
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements. See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You 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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.activemq</groupId>
+    <artifactId>activemq-parent</artifactId>
+    <version>6.0-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.activemq</groupId>
+  <artifactId>activemq-queue</artifactId>
+  <packaging>jar</packaging>
+  <version>6.0-SNAPSHOT</version>
+
+  <name>ActiveMQ :: Queue</name>
+
+  <dependencies>
+    
+    <dependency>
+      <groupId>org.apache.activemq</groupId>
+      <artifactId>activemq-util</artifactId>
+      <optional>false</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.activemq</groupId>
+      <artifactId>activemq-dispatcher</artifactId>
+      <optional>true</optional>
+    </dependency>        
+    <dependency>
+      <groupId>org.apache.activemq</groupId>
+      <artifactId>activemq-flow</artifactId>
+      <optional>true</optional>
+    </dependency>        
+  
+    <!-- Testing Dependencies -->    
+    <dependency>
+      <groupId>org.apache.activemq</groupId>
+      <artifactId>activemq-transport</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.activemq.protobuf</groupId>
+      <artifactId>activemq-protobuf</artifactId>
+      <scope>test</scope>
+    </dependency>  
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <scope>test</scope>
+    </dependency>
+  
+  </dependencies>
+  
+  <build>
+    <plugins>
+
+      <plugin>
+        <groupId>org.apache.activemq.protobuf</groupId>
+        <artifactId>activemq-protobuf</artifactId>
+        <configuration>
+          <type>alt</type>
+        </configuration>
+         <executions>
+          <execution>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+    </plugins>
+  </build>
+
+</project>

Modified: activemq/sandbox/activemq-flow/pom.xml
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-flow/pom.xml?rev=780728&r1=780727&r2=780728&view=diff
==============================================================================
--- activemq/sandbox/activemq-flow/pom.xml (original)
+++ activemq/sandbox/activemq-flow/pom.xml Mon Jun  1 17:12:18 2009
@@ -125,6 +125,7 @@
     <module>activemq-network</module>
     <module>activemq-all</module>
     <module>activemq-selector</module>
+    <module>activemq-queue</module>
   </modules>
 
 <!--
@@ -141,8 +142,15 @@
       <id>apache.snapshots</id>
       <url>https://repository.apache.org/content/repositories/snapshots/</url>
     </pluginRepository>
+    <pluginRepository>
+      <id>elca-services</id>
+      <url>http://el4.elca-services.ch/el4j/maven2repository</url>
+      <releases>
+       <enabled>true</enabled>
+      </releases>
+    </pluginRepository>
   </pluginRepositories>
-
+  
   <repositories>
     <repository>
       <id>apache.snapshots</id>
@@ -165,6 +173,11 @@
       </dependency>
       <dependency>
         <groupId>org.apache.activemq</groupId>
+        <artifactId>activemq-queue</artifactId>
+        <version>${activemq-version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.activemq</groupId>
         <artifactId>activemq-selector</artifactId>
         <version>${activemq-version}</version>
       </dependency>
@@ -781,6 +794,11 @@
     <pluginManagement>
       <plugins>
         <plugin>
+          <groupId>ch.elca.el4j.maven.plugins</groupId>
+          <artifactId>maven-depgraph-plugin</artifactId>
+          <version>1.7</version>
+        </plugin>      
+        <plugin>
           <groupId>org.apache.activemq.protobuf</groupId>
           <artifactId>activemq-protobuf</artifactId>
           <version>1.1-SNAPSHOT</version>
@@ -920,6 +938,11 @@
     </pluginManagement>
     <plugins>
       <plugin>
+        <groupId>ch.elca.el4j.maven.plugins</groupId>
+        <artifactId>maven-depgraph-plugin</artifactId>
+        <version>1.7</version>
+      </plugin>
+      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
         <configuration>