view pom.xml @ 13:edd276a3c0eb

Changed jetty version
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 11 Feb 2014 17:25:16 +0900
parents a5a706618c9d
children 8e44d61b8a65
line wrap: on
line source

<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.eclipse.jetty</groupId>
    	<artifactId>jetty-server</artifactId>
    	<version>9.1.1.v20140108</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>
	<exclusions>
	    <exclusion>
		<groupId>org.slf4j</groupId>
		<artifactId>slf4j-log4j12</artifactId>
		</exclusion>
	    <exclusion>
		<groupId>log4j</groupId>
		<artifactId>log4j</artifactId>
		</exclusion>
	    </exclusions>
    </dependency>
    <dependency>
			<groupId>com.eaio.uuid</groupId>
			<artifactId>uuid</artifactId>
			<version>3.3</version>
		</dependency>
    <dependency>
    	<groupId>jungle</groupId>
    	<artifactId>jungle-core</artifactId>
    	<version>0.0.1-SNAPSHOT</version>
    </dependency>
  </dependencies>
  <repositories>
		<repository>
			<id>eaio.com</id>
			<url>http://eaio.com/maven2</url>
		</repository>
	</repositories>
</project>