4e96029bae5e346cf62a92bc1c5dfbaf9f253920
[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   </repositories>
67
68   <dependencies>
69     <dependency>
70       <groupId>gr.grnet.aquarium</groupId>
71       <artifactId>model</artifactId>
72       <version>0.0.2-SNAPSHOT</version>
73     </dependency>
74     <dependency>
75       <groupId>org.scala-libs</groupId>
76       <artifactId>scalajpa_2.9.1</artifactId>
77       <version>1.4</version>
78     </dependency>
79     <dependency>
80       <groupId>gr.grnet.aquarium</groupId>
81       <artifactId>shared</artifactId>
82       <version>0.0.2-SNAPSHOT</version>
83       <classifier>resources</classifier>
84       <type>zip</type>
85       <scope>provided</scope>
86     </dependency>
87     <dependency>
88       <groupId>net.liftweb</groupId>
89       <artifactId>lift-json_2.9.1</artifactId>
90       <version>2.4-M5</version>
91     </dependency>
92     <dependency>
93       <groupId>net.liftweb</groupId>
94       <artifactId>lift-json-ext_2.9.1</artifactId>
95       <version>2.4-M5</version>
96     </dependency>
97     <dependency>
98       <groupId>org.yaml</groupId>
99       <artifactId>snakeyaml</artifactId>
100       <version>1.9</version>
101     </dependency>
102     <dependency>
103       <groupId>com.kenai.crontab-parser</groupId>
104       <artifactId>crontab-parser</artifactId>
105       <version>1.0.1</version>
106     </dependency>
107     <dependency>
108       <groupId>com.rabbitmq</groupId>
109       <artifactId>amqp-client</artifactId>
110       <version>2.7.0</version>
111     </dependency>
112
113     <dependency>
114       <groupId>com.ckkloverdos</groupId>
115       <artifactId>streamresource_2.9.1</artifactId>
116       <version>0.1.1</version>
117     </dependency>
118
119     <dependency>
120       <groupId>com.thoughtworks.xstream</groupId>
121       <artifactId>xstream</artifactId>
122       <version>1.4.1</version>
123     </dependency>
124   </dependencies>
125 </project>