Use the new Timeslot type
[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>shared</artifactId>
84       <version>0.0.2-SNAPSHOT</version>
85       <classifier>resources</classifier>
86       <type>zip</type>
87       <scope>provided</scope>
88     </dependency>
89     <dependency>
90       <groupId>net.liftweb</groupId>
91       <artifactId>lift-json_2.9.1</artifactId>
92       <version>2.4-M5</version>
93     </dependency>
94     <dependency>
95       <groupId>net.liftweb</groupId>
96       <artifactId>lift-json-ext_2.9.1</artifactId>
97       <version>2.4-M5</version>
98     </dependency>
99     <dependency>
100       <groupId>org.yaml</groupId>
101       <artifactId>snakeyaml</artifactId>
102       <version>1.9</version>
103     </dependency>
104     <dependency>
105       <groupId>com.kenai.crontab-parser</groupId>
106       <artifactId>crontab-parser</artifactId>
107       <version>1.0.1</version>
108     </dependency>
109     <dependency>
110       <groupId>com.rabbitmq</groupId>
111       <artifactId>amqp-client</artifactId>
112       <version>2.7.0</version>
113     </dependency>
114
115     <dependency>
116       <groupId>com.ckkloverdos</groupId>
117       <artifactId>streamresource_2.9.1</artifactId>
118       <version>0.2.0</version>
119     </dependency>
120
121     <dependency>
122       <groupId>com.thoughtworks.xstream</groupId>
123       <artifactId>xstream</artifactId>
124       <version>1.4.1</version>
125     </dependency>
126
127     <dependency>
128       <groupId>org.mongodb</groupId>
129       <artifactId>mongo-java-driver</artifactId>
130       <version>2.7.2</version>
131     </dependency>
132
133     <!-- Official MongoDB scala driver -->
134     <!-- For issues with the driver see: https://jira.mongodb.org/browse/SCALA -->
135     <!--<dependency>-->
136       <!--<groupId>com.mongodb.casbah</groupId>-->
137       <!--<artifactId>casbah-core_2.9.1</artifactId>-->
138       <!--<version>2.1.5-1</version>-->
139     <!--</dependency>-->
140
141     <dependency>
142       <groupId>se.scalablesolutions.akka</groupId>
143       <artifactId>akka-actor</artifactId>
144       <version>1.3-RC1</version>
145     </dependency>
146
147     <dependency>
148       <groupId>se.scalablesolutions.akka</groupId>
149       <artifactId>akka-remote</artifactId>
150       <version>1.3-RC1</version>
151     </dependency>
152
153     <dependency>
154       <groupId>se.scalablesolutions.akka</groupId>
155       <artifactId>akka-testkit</artifactId>
156       <version>1.3-RC1</version>
157       <scope>test</scope>
158     </dependency>
159   </dependencies>
160 </project>