Merge "Change the way of fetching data from datastore and write user's intents into...
[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   </properties>
34
35   <dependencies>
36     <dependency>
37       <groupId>org.slf4j</groupId>
38       <artifactId>slf4j-log4j12</artifactId>
39       <version>${log4j.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>junit</groupId>
43       <artifactId>junit</artifactId>
44       <version>${junit.version}</version>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>commons-cli</groupId>
49       <artifactId>commons-cli</artifactId>
50       <version>${cli.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>com.googlecode.cliche</groupId>
54       <artifactId>cliche</artifactId>
55       <version>${cliche.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>ch.ethz.ganymed</groupId>
59       <artifactId>ganymed-ssh2</artifactId>
60       <version>${ssh.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>org.json</groupId>
64       <artifactId>json</artifactId>
65       <version>${json.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>org.glassfish.jersey.containers</groupId>
69       <artifactId>jersey-container-grizzly2-http</artifactId>
70       <version>${jersey.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>org.glassfish.jersey.media</groupId>
74       <artifactId>jersey-media-moxy</artifactId>
75       <version>${jersey.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>org.codehaus.enunciate</groupId>
79       <artifactId>enunciate-core-annotations</artifactId>
80       <version>${enunciate.version}</version>
81     </dependency>
82   </dependencies>
83
84   <repositories>
85     <repository>
86       <id>cliche</id>
87       <url>https://oss.sonatype.org/content/repositories/snapshots</url>
88     </repository>
89   </repositories>
90
91   <scm>
92     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
93     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
94     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
95     <tag>HEAD</tag>
96   </scm>
97 </project>