Migrate restconf dependency
[nemo.git] / nemo-features / 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.odlparent</groupId>
14     <artifactId>features-parent</artifactId>
15     <version>1.6.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.nemo</groupId>
20   <artifactId>nemo-features</artifactId>
21   <version>1.0.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23
24   <prerequisites>
25     <maven>3.1.1</maven>
26   </prerequisites>
27
28   <properties>
29     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
30     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
31     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
32     <dlux.version>0.3.0-SNAPSHOT</dlux.version>
33   </properties>
34
35   <dependencyManagement>
36     <dependencies>
37       <dependency>
38         <groupId>org.opendaylight.controller</groupId>
39         <artifactId>mdsal-artifacts</artifactId>
40         <version>${mdsal.version}</version>
41         <type>pom</type>
42         <scope>import</scope>
43       </dependency>
44       <dependency>
45         <groupId>org.opendaylight.netconf</groupId>
46         <artifactId>restconf-artifacts</artifactId>
47         <version>${restconf.version}</version>
48         <type>pom</type>
49         <scope>import</scope>
50       </dependency>
51       <dependency>
52         <groupId>org.opendaylight.dlux</groupId>
53         <artifactId>features-dlux</artifactId>
54         <version>${dlux.version}</version>
55         <type>pom</type>
56         <scope>import</scope>
57       </dependency>
58     </dependencies>
59   </dependencyManagement>
60
61   <dependencies>
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>features-yangtools</artifactId>
65       <version>${yangtools.version}</version>
66       <classifier>features</classifier>
67       <type>xml</type>
68       <scope>runtime</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>features-mdsal</artifactId>
73       <classifier>features</classifier>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.netconf</groupId>
79       <artifactId>features-restconf</artifactId>
80       <version>${restconf.version}</version>
81       <classifier>features</classifier>
82       <type>xml</type>
83       <scope>runtime</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.dlux</groupId>
87       <artifactId>features-dlux</artifactId>
88       <version>${dlux.version}</version>
89       <classifier>features</classifier>
90       <type>xml</type>
91       <scope>runtime</scope>
92     </dependency>
93     <dependency>
94       <groupId>${project.groupId}</groupId>
95       <artifactId>nemo-api</artifactId>
96       <version>${project.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>nemo-impl</artifactId>
101       <version>${project.version}</version>
102     </dependency>
103     <dependency>
104       <groupId>${project.groupId}</groupId>
105       <artifactId>openflow-renderer</artifactId>
106       <version>${project.version}</version>
107     </dependency>
108     <dependency>
109       <groupId>${project.groupId}</groupId>
110       <artifactId>openflow-renderer</artifactId>
111       <version>${project.version}</version>
112       <classifier>config</classifier>
113       <type>xml</type>
114     </dependency>
115     <dependency>
116       <groupId>${project.groupId}</groupId>
117       <artifactId>nemo-ui</artifactId>
118       <version>${project.version}</version>
119     </dependency>
120   </dependencies>
121
122   <scm>
123     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
124     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
125     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
126     <tag>HEAD</tag>
127   </scm>
128 </project>