diff options
author | fmoga <fmoga@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-16 12:26:11 +0000 |
---|---|---|
committer | fmoga <fmoga@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-16 12:26:11 +0000 |
commit | f2c0db2b11b54e418330ef13f1ebe94f5bf19fb1 (patch) | |
tree | 76668132f7ab51eebd8ca956b818f5098767cc79 /sca-java-2.x/trunk | |
parent | 6a7a607acfac292a3a0df0167d8f5e8b56248f72 (diff) |
Clean up poms for comet binding and sample.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@997714 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk')
-rw-r--r-- | sca-java-2.x/trunk/modules/binding-comet-runtime/pom.xml | 32 | ||||
-rw-r--r-- | sca-java-2.x/trunk/samples/binding-comet/pom.xml | 39 |
2 files changed, 20 insertions, 51 deletions
diff --git a/sca-java-2.x/trunk/modules/binding-comet-runtime/pom.xml b/sca-java-2.x/trunk/modules/binding-comet-runtime/pom.xml index 3997479443..e309cfd98c 100644 --- a/sca-java-2.x/trunk/modules/binding-comet-runtime/pom.xml +++ b/sca-java-2.x/trunk/modules/binding-comet-runtime/pom.xml @@ -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> diff --git a/sca-java-2.x/trunk/samples/binding-comet/pom.xml b/sca-java-2.x/trunk/samples/binding-comet/pom.xml index 7ac99df289..5f28205da4 100644 --- a/sca-java-2.x/trunk/samples/binding-comet/pom.xml +++ b/sca-java-2.x/trunk/samples/binding-comet/pom.xml @@ -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> |