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