You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by li...@apache.org on 2010/07/20 17:41:51 UTC

svn commit: r965884 - in /incubator/aries/sandbox/linsun/mds: mds-blueprint/ mds-blueprint/pom.xml pom.xml

Author: linsun
Date: Tue Jul 20 15:41:51 2010
New Revision: 965884

URL: http://svn.apache.org/viewvc?rev=965884&view=rev
Log:
[message-driven-service]add message-driven blueprint project which allows user to easily mark message driven bean and service in blueprint definition XML using custom message-driven namespace

Added:
    incubator/aries/sandbox/linsun/mds/mds-blueprint/
    incubator/aries/sandbox/linsun/mds/mds-blueprint/pom.xml   (with props)
Modified:
    incubator/aries/sandbox/linsun/mds/pom.xml

Added: incubator/aries/sandbox/linsun/mds/mds-blueprint/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/sandbox/linsun/mds/mds-blueprint/pom.xml?rev=965884&view=auto
==============================================================================
--- incubator/aries/sandbox/linsun/mds/mds-blueprint/pom.xml (added)
+++ incubator/aries/sandbox/linsun/mds/mds-blueprint/pom.xml Tue Jul 20 15:41:51 2010
@@ -0,0 +1,86 @@
+
+	<!--
+		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.aries</groupId>
+		<artifactId>mds</artifactId>
+		<version>0.2-incubating-SNAPSHOT</version>
+	</parent>
+
+	<artifactId>org.apache.aries.mds.blueprint</artifactId>
+	<packaging>bundle</packaging>
+	<name>Apache Aries Message Driven Service custom namespace handler implementation </name>
+	<description>
+      This bundle contains the Message driven custom Namespace Handler
+    </description>
+
+	<properties>
+		<aries.osgi.export.pkg>
+			org.apache.aries.mds.blueprint
+      </aries.osgi.export.pkg>
+		<aries.osgi.import>
+			!org.apache.aries.mds.blueprint.*,
+			*
+      </aries.osgi.import>
+	</properties>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.osgi</groupId>
+			<artifactId>org.osgi.core</artifactId>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.osgi</groupId>
+			<artifactId>org.osgi.compendium</artifactId>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.eclipse</groupId>
+			<artifactId>osgi</artifactId>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.aries.blueprint</groupId>
+			<artifactId>org.apache.aries.blueprint</artifactId>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-simple</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.aries.testsupport</groupId>
+			<artifactId>org.apache.aries.testsupport.unit</artifactId>
+			<scope>test</scope>
+		</dependency>
+
+	</dependencies>
+
+</project>

Propchange: incubator/aries/sandbox/linsun/mds/mds-blueprint/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/aries/sandbox/linsun/mds/mds-blueprint/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: incubator/aries/sandbox/linsun/mds/mds-blueprint/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: incubator/aries/sandbox/linsun/mds/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/sandbox/linsun/mds/pom.xml?rev=965884&r1=965883&r2=965884&view=diff
==============================================================================
--- incubator/aries/sandbox/linsun/mds/pom.xml (original)
+++ incubator/aries/sandbox/linsun/mds/pom.xml Tue Jul 20 15:41:51 2010
@@ -16,12 +16,11 @@
 	-->
 <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">
-
-	<parent>
-		<groupId>org.apache.aries</groupId>
-		<artifactId>java5-parent</artifactId>
-		<version>0.2-incubating-SNAPSHOT</version>
-	</parent>
+        <parent>
+            <groupId>org.apache.aries</groupId>
+            <artifactId>java5-parent</artifactId>
+            <version>0.2-incubating-SNAPSHOT</version>
+        </parent>
 
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.apache.aries</groupId>
@@ -319,16 +318,23 @@
 					</exclusion>
 				</exclusions>
 			</dependency>
+			
+			<!-- used by test -->
+		    <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>4.8.1</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.aries.testsupport</groupId>
+                <artifactId>org.apache.aries.testsupport.unit</artifactId>
+                <version>${version}</version>
+                <scope>test</scope>
+            </dependency>
 		</dependencies>
-	</dependencyManagement>
+	    </dependencyManagement>
 
-	<dependencies>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<scope>test</scope>
-		</dependency>
-	</dependencies>
 
 	<build>
 		<pluginManagement>