Copyright headers
[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"
38          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
39          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
40   <modelVersion>4.0.0</modelVersion>
41
42   <parent>
43     <artifactId>aquarium</artifactId>
44     <groupId>gr.grnet</groupId>
45     <version>0.0.1-SNAPSHOT</version>
46   </parent>
47
48   <groupId>gr.grnet.aquarium</groupId>
49   <artifactId>logic</artifactId>
50   <version>0.0.1-SNAPSHOT</version>
51   <name>Aquarium Business Logic</name>
52
53   <repositories>
54     <repository>
55       <id>Sonatype-public</id>
56       <name>SnakeYAML repository</name>
57       <url>http://oss.sonatype.org/content/groups/public/</url>
58     </repository>
59
60     <repository>
61       <id>java-crontab-syntax-parser-repo</id>
62       <name>Java CronTab Syntax Parser</name>
63       <url>
64         http://kenai.com/projects/crontab-parser/sources/maven-repo/content/
65       </url>
66     </repository>
67   </repositories>
68
69   <dependencies>
70     <dependency>
71       <groupId>gr.grnet.aquarium</groupId>
72       <artifactId>model</artifactId>
73       <version>0.0.1-SNAPSHOT</version>
74     </dependency>
75     <dependency>
76       <groupId>org.scala-libs</groupId>
77       <artifactId>scalajpa_2.9.1</artifactId>
78       <version>1.4</version>
79     </dependency>
80     <dependency>
81       <groupId>gr.grnet.aquarium</groupId>
82       <artifactId>shared</artifactId>
83       <version>0.0.1-SNAPSHOT</version>
84       <classifier>resources</classifier>
85       <type>zip</type>
86       <scope>provided</scope>
87     </dependency>
88     <dependency>
89       <groupId>net.liftweb</groupId>
90       <artifactId>lift-json_2.9.1</artifactId>
91       <version>2.4-M4</version>
92     </dependency>
93     <dependency>
94       <groupId>org.yaml</groupId>
95       <artifactId>snakeyaml</artifactId>
96       <version>1.10-SNAPSHOT</version>
97     </dependency>
98     <dependency>
99       <groupId>com.kenai.crontab-parser</groupId>
100       <artifactId>crontab-parser</artifactId>
101       <version>1.0.1</version>
102     </dependency>
103     <dependency>
104       <groupId>com.rabbitmq</groupId>
105       <artifactId>amqp-client</artifactId>
106       <version>2.6.1</version>
107     </dependency>
108   </dependencies>
109 </project>