Migration to use MD-SAL Project
[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     <controller.mdsal.version>1.3.0-SNAPSHOT</controller.mdsal.version>
30     <mdsal.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
31     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
32     <dlux.version>0.3.0-SNAPSHOT</dlux.version>
33   </properties>
34
35   <dependencyManagement>
36     <dependencies>
37       <dependency>
38         <groupId>org.opendaylight.mdsal.model</groupId>
39         <artifactId>mdsal-model-artifacts</artifactId>
40         <version>${mdsal.model.version}</version>
41         <type>pom</type>
42         <scope>import</scope>
43       </dependency>
44       <dependency>
45         <groupId>org.opendaylight.controller</groupId>
46         <artifactId>mdsal-artifacts</artifactId>
47         <version>${controller.mdsal.version}</version>
48         <type>pom</type>
49         <scope>import</scope>
50       </dependency>
51       <dependency>
52         <groupId>org.opendaylight.netconf</groupId>
53         <artifactId>restconf-artifacts</artifactId>
54         <version>${restconf.version}</version>
55         <type>pom</type>
56         <scope>import</scope>
57       </dependency>
58       <dependency>
59         <groupId>org.opendaylight.dlux</groupId>
60         <artifactId>features-dlux</artifactId>
61         <version>${dlux.version}</version>
62         <type>pom</type>
63         <scope>import</scope>
64       </dependency>
65     </dependencies>
66   </dependencyManagement>
67
68   <dependencies>
69     <dependency>
70       <groupId>org.opendaylight.mdsal.model</groupId>
71       <artifactId>features-mdsal-model</artifactId>
72       <version>${mdsal.model.version}</version>
73       <classifier>features</classifier>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>features-mdsal</artifactId>
80       <classifier>features</classifier>
81       <type>xml</type>
82       <scope>runtime</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.netconf</groupId>
86       <artifactId>features-restconf</artifactId>
87       <version>${restconf.version}</version>
88       <classifier>features</classifier>
89       <type>xml</type>
90       <scope>runtime</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.dlux</groupId>
94       <artifactId>features-dlux</artifactId>
95       <version>${dlux.version}</version>
96       <classifier>features</classifier>
97       <type>xml</type>
98       <scope>runtime</scope>
99     </dependency>
100     <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>nemo-api</artifactId>
103       <version>${project.version}</version>
104     </dependency>
105     <dependency>
106       <groupId>${project.groupId}</groupId>
107       <artifactId>nemo-impl</artifactId>
108       <version>${project.version}</version>
109     </dependency>
110     <dependency>
111       <groupId>${project.groupId}</groupId>
112       <artifactId>openflow-renderer</artifactId>
113       <version>${project.version}</version>
114     </dependency>
115     <dependency>
116       <groupId>${project.groupId}</groupId>
117       <artifactId>openflow-renderer</artifactId>
118       <version>${project.version}</version>
119       <classifier>config</classifier>
120       <type>xml</type>
121     </dependency>
122     <dependency>
123       <groupId>${project.groupId}</groupId>
124       <artifactId>nemo-ui</artifactId>
125       <version>${project.version}</version>
126     </dependency>
127   </dependencies>
128
129   <scm>
130     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
131     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
132     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
133     <tag>HEAD</tag>
134   </scm>
135 </project>