Akka has landed
[aquarium] / logic / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright 2011 GRNET S.A. All rights reserved.
4   ~
5   ~ Redistribution and use in source and binary forms, with or
6   ~ without modification, are permitted provided that the following
7   ~ conditions are met:
8   ~
9   ~   1. Redistributions of source code must retain the above
10   ~      copyright notice, this list of conditions and the following
11   ~      disclaimer.
12   ~
13   ~   2. Redistributions in binary form must reproduce the above
14   ~      copyright notice, this list of conditions and the following
15   ~      disclaimer in the documentation and/or other materials
16   ~      provided with the distribution.
17   ~
18   ~ THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19   ~ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20   ~ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21   ~ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22   ~ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23   ~ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24   ~ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25   ~ USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26   ~ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27   ~ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28   ~ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29   ~ POSSIBILITY OF SUCH DAMAGE.
30   ~
31   ~ The views and conclusions contained in the software and
32   ~ documentation are those of the authors and should not be
33   ~ interpreted as representing official policies, either expressed
34   ~ or implied, of GRNET S.A.
35   -->
36
37 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
38          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
39   <modelVersion>4.0.0</modelVersion>
40
41   <parent>
42     <artifactId>aquarium</artifactId>
43     <groupId>gr.grnet</groupId>
44     <version>0.0.2-SNAPSHOT</version>
45   </parent>
46
47   <groupId>gr.grnet.aquarium</groupId>
48   <artifactId>logic</artifactId>
49   <version>0.0.2-SNAPSHOT</version>
50   <name>Aquarium Business Logic</name>
51
52   <repositories>
53     <repository>
54       <id>Sonatype-public</id>
55       <name>SnakeYAML repository</name>
56       <url>http://oss.sonatype.org/content/groups/public/</url>
57     </repository>
58
59     <repository>
60       <id>java-crontab-syntax-parser-repo</id>
61       <name>Java CronTab Syntax Parser</name>
62       <url>
63         http://kenai.com/projects/crontab-parser/sources/maven-repo/content/
64       </url>
65     </repository>
66
67     <repository>
68       <id>akka</id>
69       <name>Akka</name>
70       <url>http://akka.io/repository/</url>
71     </repository>
72
73     <repository>
74       <id>typesafe-releases</id>
75       <name>Typesafe releases</name>
76       <url>http://repo.typesafe.com/typesafe/releases</url>
77     </repository>
78   </repositories>
79
80   <dependencies>
81     <dependency>
82       <groupId>gr.grnet.aquarium</groupId>
83       <artifactId>model</artifactId>
84       <version>0.0.2-SNAPSHOT</version>
85     </dependency>
86     <dependency>
87       <groupId>org.scala-libs</groupId>
88       <artifactId>scalajpa_2.9.1</artifactId>
89       <version>1.4</version>
90     </dependency>
91     <dependency>
92       <groupId>gr.grnet.aquarium</groupId>
93       <artifactId>shared</artifactId>
94       <version>0.0.2-SNAPSHOT</version>
95       <classifier>resources</classifier>
96       <type>zip</type>
97       <scope>provided</scope>
98     </dependency>
99     <dependency>
100       <groupId>net.liftweb</groupId>
101       <artifactId>lift-json_2.9.1</artifactId>
102       <version>2.4-M5</version>
103     </dependency>
104     <dependency>
105       <groupId>net.liftweb</groupId>
106       <artifactId>lift-json-ext_2.9.1</artifactId>
107       <version>2.4-M5</version>
108     </dependency>
109     <dependency>
110       <groupId>org.yaml</groupId>
111       <artifactId>snakeyaml</artifactId>
112       <version>1.9</version>
113     </dependency>
114     <dependency>
115       <groupId>com.kenai.crontab-parser</groupId>
116       <artifactId>crontab-parser</artifactId>
117       <version>1.0.1</version>
118     </dependency>
119     <dependency>
120       <groupId>com.rabbitmq</groupId>
121       <artifactId>amqp-client</artifactId>
122       <version>2.7.0</version>
123     </dependency>
124
125     <dependency>
126       <groupId>com.ckkloverdos</groupId>
127       <artifactId>streamresource_2.9.1</artifactId>
128       <version>0.2.0</version>
129     </dependency>
130
131     <dependency>
132       <groupId>com.thoughtworks.xstream</groupId>
133       <artifactId>xstream</artifactId>
134       <version>1.4.1</version>
135     </dependency>
136
137     <dependency>
138       <groupId>org.mongodb</groupId>
139       <artifactId>mongo-java-driver</artifactId>
140       <version>2.7.2</version>
141     </dependency>
142
143     <!-- Official MongoDB scala driver -->
144     <!-- For issues with the driver see: https://jira.mongodb.org/browse/SCALA -->
145     <!--<dependency>-->
146       <!--<groupId>com.mongodb.casbah</groupId>-->
147       <!--<artifactId>casbah-core_2.9.1</artifactId>-->
148       <!--<version>2.1.5-1</version>-->
149     <!--</dependency>-->
150
151     <dependency>
152       <groupId>se.scalablesolutions.akka</groupId>
153       <artifactId>akka-actor</artifactId>
154       <version>1.3-RC1</version>
155     </dependency>
156
157     <dependency>
158       <groupId>se.scalablesolutions.akka</groupId>
159       <artifactId>akka-remote</artifactId>
160       <version>1.3-RC1</version>
161     </dependency>
162
163     <dependency>
164       <groupId>se.scalablesolutions.akka</groupId>
165       <artifactId>akka-testkit</artifactId>
166       <version>1.3-RC1</version>
167       <scope>test</scope>
168     </dependency>
169   </dependencies>
170 </project>