TepCommandHelper clean-up
[genius.git] / features / odl-genius / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2017 Red Hat, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8  -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>single-feature-parent</artifactId>
15     <version>3.1.3</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>odl-genius</artifactId>
21   <version>0.5.0-SNAPSHOT</version>
22   <packaging>feature</packaging>
23   <name>OpenDaylight :: genius :: Impls</name>
24
25   <!-- TODO Replace all <properties> by dependencyManagement <scope>import of respective upstream project -->
26   <properties>
27     <openflowplugin.version>0.7.0-SNAPSHOT</openflowplugin.version>
28     <ovsdb.version>1.7.0-SNAPSHOT</ovsdb.version>
29     <infrautils.version>1.4.0-SNAPSHOT</infrautils.version>
30     <daexim.version>1.4.0-SNAPSHOT</daexim.version>
31   </properties>
32
33   <dependencyManagement>
34     <dependencies>
35       <dependency>
36         <groupId>org.opendaylight.genius</groupId>
37         <artifactId>genius-artifacts</artifactId>
38         <version>${project.version}</version>
39         <type>pom</type>
40         <scope>import</scope>
41       </dependency>
42     </dependencies>
43   </dependencyManagement>
44
45   <dependencies>
46     <!-- Other Features -->
47     <dependency>
48       <groupId>org.opendaylight.genius</groupId>
49       <artifactId>odl-genius-api</artifactId>
50       <type>xml</type>
51       <classifier>features</classifier>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.serviceutils</groupId>
55       <artifactId>odl-serviceutils-srm</artifactId>
56       <version>0.2.0-SNAPSHOT</version>
57       <type>xml</type>
58       <classifier>features</classifier>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.infrautils</groupId>
62       <artifactId>odl-infrautils-diagstatus</artifactId>
63       <version>${infrautils.version}</version>
64       <type>xml</type>
65       <classifier>features</classifier>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.ovsdb</groupId>
69       <artifactId>odl-ovsdb-southbound-impl</artifactId>
70       <version>${ovsdb.version}</version>
71       <type>xml</type>
72       <classifier>features</classifier>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.ovsdb</groupId>
76       <artifactId>odl-ovsdb-hwvtepsouthbound</artifactId>
77       <version>${ovsdb.version}</version>
78       <type>xml</type>
79       <classifier>features</classifier>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.ovsdb</groupId>
83       <artifactId>odl-ovsdb-utils</artifactId>
84       <version>${ovsdb.version}</version>
85       <type>xml</type>
86       <classifier>features</classifier>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.openflowplugin</groupId>
90       <artifactId>odl-openflowplugin-southbound</artifactId>
91       <version>0.7.0-SNAPSHOT</version>
92       <type>xml</type>
93       <classifier>features</classifier>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.openflowplugin</groupId>
97       <artifactId>odl-openflowplugin-app-config-pusher</artifactId>
98       <version>0.7.0-SNAPSHOT</version>
99       <type>xml</type>
100       <classifier>features</classifier>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.openflowplugin</groupId>
104       <artifactId>odl-openflowplugin-app-forwardingrules-manager</artifactId>
105       <version>0.7.0-SNAPSHOT</version>
106       <type>xml</type>
107       <classifier>features</classifier>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.openflowplugin</groupId>
111       <artifactId>odl-openflowplugin-app-reconciliation-framework</artifactId>
112       <version>0.7.0-SNAPSHOT</version>
113       <type>xml</type>
114       <classifier>features</classifier>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.infrautils</groupId>
118       <artifactId>odl-infrautils-metrics</artifactId>
119       <version>${infrautils.version}</version>
120       <type>xml</type>
121       <classifier>features</classifier>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.infrautils</groupId>
125       <artifactId>odl-infrautils-inject</artifactId>
126       <version>${infrautils.version}</version>
127       <type>xml</type>
128       <classifier>features</classifier>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.infrautils</groupId>
132       <artifactId>odl-infrautils-jobcoordinator</artifactId>
133       <version>${infrautils.version}</version>
134       <type>xml</type>
135       <classifier>features</classifier>
136     </dependency>
137     <dependency>
138       <groupId>org.opendaylight.daexim</groupId>
139       <artifactId>odl-daexim</artifactId>
140       <version>${daexim.version}</version>
141       <type>xml</type>
142       <classifier>features</classifier>
143     </dependency>
144
145     <!-- External libraries to wrap -->
146     <dependency>
147       <groupId>commons-net</groupId>
148       <artifactId>commons-net</artifactId>
149     </dependency>
150     <dependency>
151       <groupId>javax.inject</groupId>
152       <artifactId>javax.inject</artifactId>
153     </dependency>
154
155     <!-- Bundles from this project -->
156     <dependency>
157       <groupId>org.opendaylight.genius</groupId>
158       <artifactId>lockmanager-impl</artifactId>
159       <version>${project.version}</version>
160     </dependency>
161     <dependency>
162       <groupId>org.opendaylight.genius</groupId>
163       <artifactId>idmanager-impl</artifactId>
164       <version>${project.version}</version>
165     </dependency>
166     <dependency>
167       <groupId>org.opendaylight.genius</groupId>
168       <artifactId>idmanager-shell</artifactId>
169       <version>${project.version}</version>
170     </dependency>
171     <dependency>
172       <groupId>org.opendaylight.genius</groupId>
173       <artifactId>mdsalutil-impl</artifactId>
174       <version>${project.version}</version>
175     </dependency>
176     <dependency>
177       <groupId>org.opendaylight.genius</groupId>
178       <artifactId>arputil-impl</artifactId>
179       <version>${project.version}</version>
180     </dependency>
181     <dependency>
182       <groupId>org.opendaylight.genius</groupId>
183       <artifactId>ipv6util-impl</artifactId>
184       <version>${project.version}</version>
185     </dependency>
186     <dependency>
187       <groupId>org.opendaylight.genius</groupId>
188       <artifactId>alivenessmonitor-impl</artifactId>
189       <version>${project.version}</version>
190     </dependency>
191     <dependency>
192       <groupId>org.opendaylight.genius</groupId>
193       <artifactId>alivenessmonitor-impl-protocols</artifactId>
194       <version>${project.version}</version>
195     </dependency>
196     <dependency>
197       <groupId>org.opendaylight.genius</groupId>
198       <artifactId>interfacemanager-impl</artifactId>
199       <version>${project.version}</version>
200     </dependency>
201     <dependency>
202       <groupId>org.opendaylight.genius</groupId>
203       <artifactId>interfacemanager-shell</artifactId>
204       <version>${project.version}</version>
205     </dependency>
206     <dependency>
207       <groupId>org.opendaylight.genius</groupId>
208       <artifactId>itm-impl</artifactId>
209       <version>${project.version}</version>
210     </dependency>
211     <dependency>
212       <groupId>org.opendaylight.genius</groupId>
213       <artifactId>resourcemanager-impl</artifactId>
214       <version>${project.version}</version>
215     </dependency>
216     <dependency>
217       <!-- finalname="etc/opendaylight/datastore/initial/config/genius-itm-config.xml" -->
218       <groupId>org.opendaylight.genius</groupId>
219       <artifactId>itm-impl</artifactId>
220       <version>${project.version}</version>
221       <type>xml</type>
222       <classifier>config</classifier>
223     </dependency>
224     <dependency>
225       <!-- finalname="etc/opendaylight/datastore/initial/config/genius-ifm-config.xml" -->
226       <groupId>org.opendaylight.genius</groupId>
227       <artifactId>interfacemanager-impl</artifactId>
228       <version>${project.version}</version>
229       <type>xml</type>
230       <classifier>config</classifier>
231     </dependency>
232     <dependency>
233       <!-- finalname="etc/opendaylight/datastore/initial/config/genius-mdsalutil-config.xml" -->
234       <groupId>org.opendaylight.genius</groupId>
235       <artifactId>mdsalutil-impl</artifactId>
236       <version>${project.version}</version>
237       <type>xml</type>
238       <classifier>config</classifier>
239     </dependency>
240   </dependencies>
241 </project>