a53d5179cc563dcf1f42c52e1d3ad9629f33f806
[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.0-SNAPSHOT</version>
16   </parent>
17
18   <groupId>org.opendaylight.nemo</groupId>
19   <artifactId>sandbox</artifactId>
20   <version>1.0.0-SNAPSHOT</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     <cliche.version>1.0-SNAPSHOT</cliche.version>
31     <ssh.version>262</ssh.version>
32     <json.version>20090211</json.version>
33     <powermock.version>1.5.2</powermock.version>
34   </properties>
35
36   <dependencies>
37     <dependency>
38       <groupId>org.powermock</groupId>
39       <artifactId>powermock-core</artifactId>
40       <version>${powermock.version}</version>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.powermock</groupId>
45       <artifactId>powermock-module-junit4</artifactId>
46       <version>${powermock.version}</version>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.powermock</groupId>
51       <artifactId>powermock-api-mockito</artifactId>
52       <version>${powermock.version}</version>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.slf4j</groupId>
57       <artifactId>slf4j-log4j12</artifactId>
58       <version>${log4j.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>junit</groupId>
62       <artifactId>junit</artifactId>
63       <version>${junit.version}</version>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>commons-cli</groupId>
68       <artifactId>commons-cli</artifactId>
69       <version>${cli.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>com.googlecode.cliche</groupId>
73       <artifactId>cliche</artifactId>
74       <version>${cliche.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>ch.ethz.ganymed</groupId>
78       <artifactId>ganymed-ssh2</artifactId>
79       <version>${ssh.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.json</groupId>
83       <artifactId>json</artifactId>
84       <version>${json.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>org.glassfish.jersey.containers</groupId>
88       <artifactId>jersey-container-grizzly2-http</artifactId>
89       <version>${jersey.version}</version>
90     </dependency>
91     <dependency>
92       <groupId>org.glassfish.jersey.media</groupId>
93       <artifactId>jersey-media-moxy</artifactId>
94       <version>${jersey.version}</version>
95     </dependency>
96     <dependency>
97       <groupId>org.codehaus.enunciate</groupId>
98       <artifactId>enunciate-core-annotations</artifactId>
99       <version>${enunciate.version}</version>
100     </dependency>
101   </dependencies>
102
103   <repositories>
104     <repository>
105       <id>cliche</id>
106       <url>https://oss.sonatype.org/content/repositories/snapshots</url>
107     </repository>
108   </repositories>
109
110   <scm>
111     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
112     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
113     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
114     <tag>HEAD</tag>
115   </scm>
116 </project>