d398e5df31b39fbdcbde2cd104797327f5659720
[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.2.1-SNAPSHOT</version>
16   </parent>
17
18   <groupId>org.opendaylight.nemo</groupId>
19   <artifactId>sandbox</artifactId>
20   <version>1.2.1-SNAPSHOT</version>
21   <packaging>jar</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: nemo :: ${project.artifactId}</name>
25
26   <properties>
27     <log4j.version>1.7.7</log4j.version>
28     <junit.version>4.11</junit.version>
29     <jersey.version>2.11</jersey.version>
30     <enunciate.version>1.26.2</enunciate.version>
31     <cli.version>1.2</cli.version>
32     <cliche.version>1.1.1-SNAPSHOT</cliche.version>
33     <ssh.version>262</ssh.version>
34     <json.version>20090211</json.version>
35   </properties>
36
37   <dependencies>
38     <dependency>
39       <groupId>org.slf4j</groupId>
40       <artifactId>slf4j-log4j12</artifactId>
41       <version>${log4j.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>junit</groupId>
45       <artifactId>junit</artifactId>
46       <version>${junit.version}</version>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>commons-cli</groupId>
51       <artifactId>commons-cli</artifactId>
52       <version>${cli.version}</version>
53     </dependency>
54     <dependency>
55       <groupId>ch.ethz.ganymed</groupId>
56       <artifactId>ganymed-ssh2</artifactId>
57       <version>${ssh.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>org.json</groupId>
61       <artifactId>json</artifactId>
62       <version>${json.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>org.glassfish.jersey.containers</groupId>
66       <artifactId>jersey-container-grizzly2-http</artifactId>
67       <version>${jersey.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.glassfish.jersey.media</groupId>
71       <artifactId>jersey-media-moxy</artifactId>
72       <version>${jersey.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.codehaus.enunciate</groupId>
76       <artifactId>enunciate-core-annotations</artifactId>
77       <version>${enunciate.version}</version>
78     </dependency>
79   </dependencies>
80
81   <scm>
82     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
83     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
84     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
85     <tag>HEAD</tag>
86   </scm>
87 </project>