diff pom.xml @ 0:e7a9b10dd844

added cassandra bulletin board
author Shoshi TAMAKI
date Thu, 07 Feb 2013 00:26:21 +0900
parents
children babb46537b8a
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pom.xml	Thu Feb 07 00:26:21 2013 +0900
@@ -0,0 +1,51 @@
+<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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>jp.ac.u_ryukyu.ie.cr.shoshi.jungle</groupId>
+  <artifactId>bulletinboard</artifactId>
+  <version>0.0.1-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
+  <name>bulletinboard</name>
+  <url>http://maven.apache.org</url>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+    	<groupId>org.mortbay.jetty</groupId>
+    	<artifactId>jetty</artifactId>
+    	<version>6.1.26</version>
+    </dependency>
+    <dependency>
+    	<groupId>org.hectorclient</groupId>
+    	<artifactId>hector-core</artifactId>
+    	<version>1.1-2</version>
+    </dependency>
+    <dependency>
+    	<groupId>org.apache.cassandra</groupId>
+    	<artifactId>cassandra-all</artifactId>
+    	<version>1.2.1</version>
+    </dependency>
+    <dependency>
+			<groupId>com.eaio.uuid</groupId>
+			<artifactId>uuid</artifactId>
+			<version>3.3</version>
+		</dependency>
+  </dependencies>
+  <repositories>
+		<repository>
+			<id>eaio.com</id>
+			<url>http://eaio.com/maven2</url>
+		</repository>
+	</repositories>
+</project>