You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by fm...@apache.org on 2010/09/16 14:26:11 UTC

svn commit: r997714 - in /tuscany/sca-java-2.x/trunk: modules/binding-comet-runtime/pom.xml samples/binding-comet/pom.xml

Author: fmoga
Date: Thu Sep 16 12:26:11 2010
New Revision: 997714

URL: http://svn.apache.org/viewvc?rev=997714&view=rev
Log:
Clean up poms for comet binding and sample.

Modified:
    tuscany/sca-java-2.x/trunk/modules/binding-comet-runtime/pom.xml
    tuscany/sca-java-2.x/trunk/samples/binding-comet/pom.xml

Modified: tuscany/sca-java-2.x/trunk/modules/binding-comet-runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/binding-comet-runtime/pom.xml?rev=997714&r1=997713&r2=997714&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/modules/binding-comet-runtime/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/modules/binding-comet-runtime/pom.xml Thu Sep 16 12:26:11 2010
@@ -48,6 +48,17 @@
 			<version>0.6.1</version>
 		</dependency>
 		<dependency>
+			<groupId>com.google.code.gson</groupId>
+			<artifactId>gson</artifactId>
+			<version>1.4</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-servlet_3.0_spec</artifactId>
+			<version>1.0</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
 			<artifactId>tuscany-host-http</artifactId>
 			<version>2.0-SNAPSHOT</version>
@@ -76,17 +87,6 @@
 			<version>2.0-SNAPSHOT</version>
 			<scope>test</scope>
 		</dependency>
-		<dependency>
-			<groupId>com.google.code.gson</groupId>
-			<artifactId>gson</artifactId>
-			<version>1.4</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-servlet_3.0_spec</artifactId>
-			<version>1.0</version>
-			<scope>provided</scope>
-		</dependency>
 	</dependencies>
 
 	<repositories>
@@ -100,16 +100,6 @@
 				<enabled>true</enabled>
 			</releases>
 		</repository>
-		<repository>
-		    <id>maven2-repository.dev.java.net</id>
-		    <name>Java.net Repository for Maven</name>
-		    <url>http://download.java.net/maven/2/</url>
-		    <layout>default</layout>
-		</repository>
-		<repository>
-		    <id>glassfish-repository</id>
-		    <url>http://download.java.net/maven/glassfish</url>
-		</repository>
 	</repositories>
 
 </project>

Modified: tuscany/sca-java-2.x/trunk/samples/binding-comet/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/binding-comet/pom.xml?rev=997714&r1=997713&r2=997714&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/samples/binding-comet/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/samples/binding-comet/pom.xml Thu Sep 16 12:26:11 2010
@@ -21,16 +21,16 @@
 	<modelVersion>4.0.0</modelVersion>
 	<parent>
 		<groupId>org.apache.tuscany.sca</groupId>
-		<artifactId>tuscany-sca</artifactId>
+		<artifactId>tuscany-samples</artifactId>
 		<version>2.0-SNAPSHOT</version>
-		<relativePath>../../pom.xml</relativePath>
+		<relativePath>../pom.xml</relativePath>
 	</parent>
 
 	<groupId>org.apache.tuscany.sca</groupId>
-	<artifactId>sample-comet-webapp</artifactId>
+	<artifactId>sample-binding-comet</artifactId>
 	<packaging>war</packaging>
 	<version>1.0</version>
-	<name>comet-webapp</name>
+	<name>Apache Tuscany SCA Sample binding.comet</name>
 
 	<dependencies>
 		<dependency>
@@ -38,40 +38,19 @@
 			<artifactId>tuscany-base-nodep</artifactId>
 			<version>2.0-SNAPSHOT</version>
 		</dependency>
-        <dependency>
-            <groupId>org.atmosphere</groupId>
-            <artifactId>atmosphere-commons</artifactId>
-            <version>0.6.1</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.atmosphere</groupId>
-        	<artifactId>atmosphere-runtime</artifactId>
-        	<version>0.6.1</version>
-        </dependency>
-		<dependency>
-			<groupId>javax</groupId>
-			<artifactId>javaee-web-api</artifactId>
-			<version>6.0</version>
-			<scope>provided</scope>
-		</dependency>
 		<dependency>
 			<groupId>org.apache.tuscany.sca</groupId>
-			<artifactId>tuscany-binding-comet</artifactId>
+			<artifactId>tuscany-binding-comet-runtime</artifactId>
 			<version>2.0-SNAPSHOT</version>
 			<type>jar</type>
-			<scope>compile</scope>
 		</dependency>
 		<dependency>
-			<groupId>org.apache.tuscany.sca</groupId>
-			<artifactId>tuscany-binding-comet-runtime</artifactId>
-			<version>2.0-SNAPSHOT</version>
-			<type>jar</type>
-			<scope>compile</scope>
+			<groupId>javax</groupId>
+			<artifactId>javaee-web-api</artifactId>
+			<version>6.0</version>
+			<scope>provided</scope>
 		</dependency>
 	</dependencies>
 	
-	<build>
-    	<finalName>comet-webapp</finalName>
-    </build>
 </project>