7aea02f640743f71a7e43870eadd08cd8af10fee
[nemo.git] / nemo-tools / sandbox / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Huawei, Inc and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.nemo</groupId>
14     <artifactId>nemo-tools</artifactId>
15     <version>1.0.2-Beryllium-SR2</version>
16   </parent>
17
18   <groupId>org.opendaylight.nemo</groupId>
19   <artifactId>sandbox</artifactId>
20   <version>1.0.2-Beryllium-SR2</version>
21   <packaging>jar</packaging>
22   <name>${project.artifactId}</name>
23
24   <properties>
25     <log4j.version>1.7.7</log4j.version>
26     <junit.version>4.11</junit.version>
27     <jersey.version>2.11</jersey.version>
28     <enunciate.version>1.26.2</enunciate.version>
29     <cli.version>1.2</cli.version>
30     <ssh.version>262</ssh.version>
31     <json.version>20090211</json.version>
32   </properties>
33
34   <dependencies>
35     <dependency>
36       <groupId>org.slf4j</groupId>
37       <artifactId>slf4j-log4j12</artifactId>
38       <version>${log4j.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>junit</groupId>
42       <artifactId>junit</artifactId>
43       <version>${junit.version}</version>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>commons-cli</groupId>
48       <artifactId>commons-cli</artifactId>
49       <version>${cli.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>ch.ethz.ganymed</groupId>
53       <artifactId>ganymed-ssh2</artifactId>
54       <version>${ssh.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>org.json</groupId>
58       <artifactId>json</artifactId>
59       <version>${json.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>org.glassfish.jersey.containers</groupId>
63       <artifactId>jersey-container-grizzly2-http</artifactId>
64       <version>${jersey.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.glassfish.jersey.media</groupId>
68       <artifactId>jersey-media-moxy</artifactId>
69       <version>${jersey.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>org.codehaus.enunciate</groupId>
73       <artifactId>enunciate-core-annotations</artifactId>
74       <version>${enunciate.version}</version>
75     </dependency>
76   </dependencies>
77
78   <scm>
79     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
80     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
81     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
82     <tag>HEAD</tag>
83   </scm>
84 </project>