Fix test pricelist definition
[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
79     <repository>
80       <id>twitter</id>
81       <name>Twitter</name>
82       <url>http://maven.twttr.com</url>
83     </repository>
84
85     <repository>
86       <id>scala-tools-snapshots</id>
87       <name>Scala-Tools Dependencies Repository for Releases</name>
88       <url>http://scala-tools.org/repo-snapshots</url>
89     </repository>
90   </repositories>
91
92   <dependencies>
93     <dependency>
94       <groupId>gr.grnet.aquarium</groupId>
95       <artifactId>shared</artifactId>
96       <version>0.0.2-SNAPSHOT</version>
97       <classifier>resources</classifier>
98       <type>zip</type>
99       <scope>provided</scope>
100     </dependency>
101     <dependency>
102       <groupId>net.liftweb</groupId>
103       <artifactId>lift-json_2.9.1</artifactId>
104       <version>2.4-M5</version>
105     </dependency>
106     <dependency>
107       <groupId>net.liftweb</groupId>
108       <artifactId>lift-json-ext_2.9.1</artifactId>
109       <version>2.4-M5</version>
110     </dependency>
111     <dependency>
112       <groupId>org.yaml</groupId>
113       <artifactId>snakeyaml</artifactId>
114       <version>1.9</version>
115     </dependency>
116     <dependency>
117       <groupId>com.kenai.crontab-parser</groupId>
118       <artifactId>crontab-parser</artifactId>
119       <version>1.0.1</version>
120     </dependency>
121     <dependency>
122       <groupId>com.rabbitmq</groupId>
123       <artifactId>amqp-client</artifactId>
124       <version>2.7.0</version>
125     </dependency>
126
127     <dependency>
128       <groupId>com.ckkloverdos</groupId>
129       <artifactId>streamresource_2.9.1</artifactId>
130       <version>0.2.0</version>
131     </dependency>
132
133     <dependency>
134       <groupId>com.thoughtworks.xstream</groupId>
135       <artifactId>xstream</artifactId>
136       <version>1.4.1</version>
137     </dependency>
138
139     <dependency>
140       <groupId>org.mongodb</groupId>
141       <artifactId>mongo-java-driver</artifactId>
142       <version>2.7.2</version>
143     </dependency>
144
145     <!-- Official MongoDB scala driver -->
146     <!-- For issues with the driver see: https://jira.mongodb.org/browse/SCALA -->
147     <!--<dependency>-->
148     <!--<groupId>com.mongodb.casbah</groupId>-->
149     <!--<artifactId>casbah-core_2.9.1</artifactId>-->
150     <!--<version>2.1.5-1</version>-->
151     <!--</dependency>-->
152
153     <dependency>
154       <groupId>se.scalablesolutions.akka</groupId>
155       <artifactId>akka-actor</artifactId>
156       <version>1.3-RC1</version>
157     </dependency>
158
159     <dependency>
160       <groupId>se.scalablesolutions.akka</groupId>
161       <artifactId>akka-remote</artifactId>
162       <version>1.3-RC1</version>
163     </dependency>
164
165     <dependency>
166       <groupId>se.scalablesolutions.akka</groupId>
167       <artifactId>akka-testkit</artifactId>
168       <version>1.3-RC1</version>
169       <scope>test</scope>
170     </dependency>
171
172     <dependency>
173       <groupId>javax.ws.rs</groupId>
174       <artifactId>jsr311-api</artifactId>
175       <version>1.1.1</version>
176     </dependency>
177
178     <dependency>
179       <groupId>com.twitter</groupId>
180       <artifactId>finagle-core</artifactId>
181       <version>1.9.10</version>
182     </dependency>
183
184     <dependency>
185       <groupId>cc.spray.can</groupId>
186       <artifactId>spray-can</artifactId>
187       <version>0.9.1</version>
188     </dependency>
189   </dependencies>
190 </project>