206 lines
6 KiB
XML
Executable file
206 lines
6 KiB
XML
Executable file
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>akka-kernel</artifactId>
|
|
<name>Akka Kernel Module</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<artifactId>akka</artifactId>
|
|
<groupId>${akka.groupId}</groupId>
|
|
<version>${akka.version}</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${akka.groupId}</groupId>
|
|
<artifactId>akka-supervisor</artifactId>
|
|
<version>${akka.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.scala-lang</groupId>
|
|
<artifactId>scala-library</artifactId>
|
|
<version>${scala.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.lag</groupId>
|
|
<artifactId>configgy</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.guiceyfruit</groupId>
|
|
<artifactId>guice-core</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.guiceyfruit</groupId>
|
|
<artifactId>guice-jsr250</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.grizzly</groupId>
|
|
<artifactId>grizzly-servlet-webserver</artifactId>
|
|
<version>1.8.6.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>jersey-server</artifactId>
|
|
<version>1.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>jersey-json</artifactId>
|
|
<version>1.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>jersey-atom</artifactId>
|
|
<version>1.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>voldemort</groupId>
|
|
<artifactId>voldemort</artifactId>
|
|
<version>0.4a</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>voldemort</groupId>
|
|
<artifactId>voldemort-contrib</artifactId>
|
|
<version>0.4a</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache</groupId>
|
|
<artifactId>zookeeper</artifactId>
|
|
<version>3.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<version>1.4.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.4.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.specs</groupId>
|
|
<artifactId>specs</artifactId>
|
|
<version>1.4.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.scalacheck</groupId>
|
|
<artifactId>scalacheck</artifactId>
|
|
<version>1.5</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>src/main/scala</sourceDirectory>
|
|
<testSourceDirectory>src/test/scala</testSourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.scala-tools</groupId>
|
|
<artifactId>maven-scala-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
<goal>testCompile</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<args>
|
|
<arg>-target:jvm-1.5</arg>
|
|
<arg>-unchecked</arg>
|
|
</args>
|
|
<scalaVersion>${scala.version}</scalaVersion>
|
|
<vscaladocVersion>1.0</vscaladocVersion>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
<configuration>
|
|
<downloadSources>true</downloadSources>
|
|
<buildcommands>
|
|
<buildcommand>
|
|
ch.epfl.lamp.sdt.core.scalabuilder
|
|
</buildcommand>
|
|
</buildcommands>
|
|
<additionalProjectnatures>
|
|
<projectnature>
|
|
ch.epfl.lamp.sdt.core.scalanature
|
|
</projectnature>
|
|
</additionalProjectnatures>
|
|
<classpathContainers>
|
|
<classpathContainer>
|
|
org.eclipse.jdt.launching.JRE_CONTAINER
|
|
</classpathContainer>
|
|
<classpathContainer>
|
|
ch.epfl.lamp.sdt.launching.SCALA_CONTAINER
|
|
</classpathContainer>
|
|
</classpathContainers>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**/Abstract*</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<configuration>
|
|
<formats>
|
|
<format>xml</format>
|
|
<format>html</format>
|
|
</formats>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<filtering>false</filtering>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
<resource>
|
|
<filtering>false</filtering>
|
|
<directory>src/main/scala</directory>
|
|
<includes>
|
|
<include>**</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/*.scala</exclude>
|
|
</excludes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.scala-tools</groupId>
|
|
<artifactId>maven-scala-plugin</artifactId>
|
|
<configuration>
|
|
<vscaladocVersion>1.1</vscaladocVersion>
|
|
<scalaVersion>${scala.version}</scalaVersion>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</project>
|