summaryrefslogtreecommitdiffstats
path: root/collaboration/GSoC-2011-Eranda/cassandra/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'collaboration/GSoC-2011-Eranda/cassandra/pom.xml')
-rw-r--r--collaboration/GSoC-2011-Eranda/cassandra/pom.xml29
1 files changed, 21 insertions, 8 deletions
diff --git a/collaboration/GSoC-2011-Eranda/cassandra/pom.xml b/collaboration/GSoC-2011-Eranda/cassandra/pom.xml
index 1194cdfd26..bc74631d4e 100644
--- a/collaboration/GSoC-2011-Eranda/cassandra/pom.xml
+++ b/collaboration/GSoC-2011-Eranda/cassandra/pom.xml
@@ -22,39 +22,52 @@ under the License.
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.tuscany</groupId>
- <artifactId>nosql-datastore</artifactId>
+ <artifactId>nosql-datastore-cassandra</artifactId>
<version>0.0.1</version>
-
<packaging>jar</packaging>
<name>tuscany</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <cassandra.version>0.7.1</cassandra.version>
+ <hector.version>0.7.0-29</hector.version>
+ <tuscany.version>2.0-M5</tuscany.version>
</properties>
-
<dependencies>
<dependency>
<groupId>me.prettyprint</groupId>
<artifactId>hector-core</artifactId>
- <version>0.7.0-29</version>
+ <version>${hector.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-javautils</artifactId>
- <version>0.7.1</version>
+ <version>${cassandra.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-all</artifactId>
- <version>0.7.4</version>
+ <version>${cassandra.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-sca-api</artifactId>
+ <version>${tuscany.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.ws.rs</groupId>
+ <artifactId>jsr311-api</artifactId>
+ <version>1.1.1</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>4.8.2</version>
+ <version>4.8.1</version>
+ <scope>test</scope>
</dependency>
</dependencies>
-
<build>
<plugins>
<plugin>