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