Merge "Technical Debt part 2"
[openflowplugin.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.odlparent</groupId>
7         <artifactId>features-parent</artifactId>
8         <version>1.7.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.openflowplugin</groupId>
13     <artifactId>features-openflowplugin</artifactId>
14     <packaging>jar</packaging>
15     <version>0.3.0-SNAPSHOT</version>
16
17     <properties>
18         <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
19         <config.version>0.5.0-SNAPSHOT</config.version>
20         <mdsal.version>1.4.0-SNAPSHOT</mdsal.version>
21         <openflowjava.version>0.8.0-SNAPSHOT</openflowjava.version>
22         <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
23         <dlux.version>0.4.0-SNAPSHOT</dlux.version>
24         <lldp.version>0.11.0-SNAPSHOT</lldp.version>
25         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
26         <restconf.version>1.4.0-SNAPSHOT</restconf.version>
27         <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
28     </properties>
29
30     <dependencyManagement>
31         <dependencies>
32             <!-- This project -->
33             <dependency>
34                 <groupId>org.opendaylight.openflowplugin</groupId>
35                 <artifactId>openflowplugin-artifacts</artifactId>
36                 <version>${project.version}</version>
37                 <scope>import</scope>
38                 <type>pom</type>
39             </dependency>
40
41             <!-- YANG tools -->
42             <dependency>
43                 <groupId>org.opendaylight.yangtools</groupId>
44                 <artifactId>yangtools-artifacts</artifactId>
45                 <version>${yangtools.version}</version>
46                 <scope>import</scope>
47                 <type>pom</type>
48             </dependency>
49
50             <!-- Controller infrastructure -->
51             <dependency>
52                 <groupId>org.opendaylight.controller</groupId>
53                 <artifactId>config-artifacts</artifactId>
54                 <version>${config.version}</version>
55                 <scope>import</scope>
56                 <type>pom</type>
57             </dependency>
58             <dependency>
59                 <groupId>org.opendaylight.controller</groupId>
60                 <artifactId>mdsal-artifacts</artifactId>
61                 <version>${mdsal.version}</version>
62                 <scope>import</scope>
63                 <type>pom</type>
64             </dependency>
65
66             <!-- restconf -->
67             <dependency>
68                 <groupId>org.opendaylight.netconf</groupId>
69                 <artifactId>restconf-artifacts</artifactId>
70                 <version>${restconf.version}</version>
71                 <scope>import</scope>
72                 <type>pom</type>
73             </dependency>
74
75
76             <!-- OpenFlowJava -->
77             <dependency>
78                 <groupId>org.opendaylight.openflowjava</groupId>
79                 <artifactId>openflowjava-artifacts</artifactId>
80                 <version>${openflowjava.version}</version>
81                 <scope>import</scope>
82                 <type>pom</type>
83             </dependency>
84         </dependencies>
85     </dependencyManagement>
86
87     <dependencies>
88         <!-- feature dependencies -->
89         <dependency>
90             <groupId>org.opendaylight.mdsal.model</groupId>
91             <artifactId>features-mdsal-model</artifactId>
92             <version>${mdsal.model.version}</version>
93             <classifier>features</classifier>
94             <type>xml</type>
95             <scope>runtime</scope>
96         </dependency>
97
98         <dependency>
99             <groupId>org.opendaylight.controller</groupId>
100             <artifactId>features-mdsal</artifactId>
101             <classifier>features</classifier>
102             <type>xml</type>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.yangtools</groupId>
106             <artifactId>features-yangtools</artifactId>
107             <classifier>features</classifier>
108             <type>xml</type>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.netconf</groupId>
112             <artifactId>features-restconf</artifactId>
113             <classifier>features</classifier>
114             <type>xml</type>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.openflowjava</groupId>
118             <artifactId>features-openflowjava</artifactId>
119             <classifier>features</classifier>
120             <type>xml</type>
121         </dependency>
122
123         <!-- bundle dependencies -->
124         <dependency>
125             <groupId>org.opendaylight.openflowplugin.model</groupId>
126             <artifactId>model-flow-base</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.openflowplugin.model</groupId>
130             <artifactId>model-flow-service</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.openflowplugin.model</groupId>
134             <artifactId>model-flow-statistics</artifactId>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.controller.model</groupId>
138             <artifactId>model-inventory</artifactId>
139         </dependency>
140         <dependency>
141             <groupId>org.opendaylight.controller.model</groupId>
142             <artifactId>model-topology</artifactId>
143         </dependency>
144
145         <dependency>
146             <groupId>org.opendaylight.openflowplugin.applications</groupId>
147             <artifactId>forwardingrules-manager</artifactId>
148         </dependency>
149         <dependency>
150             <groupId>org.opendaylight.openflowplugin.applications</groupId>
151             <artifactId>forwardingrules-sync</artifactId>
152         </dependency>
153         <dependency>
154             <groupId>org.opendaylight.openflowplugin.applications</groupId>
155             <artifactId>inventory-manager</artifactId>
156         </dependency>
157         <dependency>
158             <groupId>org.opendaylight.openflowplugin.applications</groupId>
159             <artifactId>lldp-speaker</artifactId>
160         </dependency>
161         <dependency>
162             <groupId>org.opendaylight.openflowplugin.applications</groupId>
163             <artifactId>statistics-manager</artifactId>
164         </dependency>
165         <dependency>
166             <groupId>org.opendaylight.openflowplugin</groupId>
167             <artifactId>openflowplugin-blueprint-config</artifactId>
168             <version>${project.version}</version>
169         </dependency>
170         <dependency>
171             <groupId>org.opendaylight.openflowplugin</groupId>
172             <artifactId>openflowplugin-blueprint-config</artifactId>
173             <version>${project.version}</version>
174             <type>cfg</type>
175             <classifier>config</classifier>
176         </dependency>
177
178         <dependency>
179             <groupId>org.opendaylight.dlux</groupId>
180             <artifactId>features-dlux</artifactId>
181             <version>${dlux.version}</version>
182             <classifier>features</classifier>
183             <type>xml</type>
184         </dependency>
185
186         <!-- bundle dependencies -->
187         <dependency>
188             <groupId>org.opendaylight.openflowplugin</groupId>
189             <artifactId>openflowplugin-api</artifactId>
190         </dependency>
191         <dependency>
192             <groupId>org.opendaylight.openflowplugin</groupId>
193             <artifactId>openflowplugin-extension-api</artifactId>
194         </dependency>
195         <dependency>
196             <groupId>org.opendaylight.openflowplugin</groupId>
197             <artifactId>openflowplugin</artifactId>
198         </dependency>
199         <dependency>
200             <groupId>org.opendaylight.openflowplugin</groupId>
201             <artifactId>openflowplugin-impl</artifactId>
202         </dependency>
203         <dependency>
204             <groupId>org.opendaylight.openflowplugin.applications</groupId>
205             <artifactId>table-miss-enforcer</artifactId>
206         </dependency>
207
208         <dependency>
209             <groupId>org.opendaylight.openflowplugin.applications</groupId>
210             <artifactId>topology-lldp-discovery</artifactId>
211         </dependency>
212
213         <dependency>
214             <groupId>org.opendaylight.openflowplugin.applications</groupId>
215             <artifactId>topology-manager</artifactId>
216         </dependency>
217
218         <dependency>
219             <groupId>org.opendaylight.openflowplugin.applications</groupId>
220             <artifactId>of-switch-config-pusher</artifactId>
221         </dependency>
222
223         <dependency>
224             <groupId>org.opendaylight.openflowplugin</groupId>
225             <artifactId>drop-test-karaf</artifactId>
226         </dependency>
227         <dependency>
228             <groupId>org.opendaylight.openflowplugin</groupId>
229             <artifactId>test-common</artifactId>
230         </dependency>
231         <dependency>
232             <groupId>org.opendaylight.openflowplugin</groupId>
233             <artifactId>openflowplugin-controller-config</artifactId>
234             <type>xml</type>
235             <classifier>config-Li</classifier>
236         </dependency>
237         <dependency>
238             <groupId>org.opendaylight.openflowplugin</groupId>
239             <artifactId>openflowplugin-controller-config</artifactId>
240             <type>xml</type>
241             <classifier>configmsgspy</classifier>
242         </dependency>
243         <dependency>
244             <groupId>org.opendaylight.controller</groupId>
245             <artifactId>liblldp</artifactId>
246             <version>${lldp.version}</version>
247         </dependency>
248         <dependency>
249             <groupId>org.opendaylight.openflowplugin</groupId>
250             <artifactId>openflowplugin-common</artifactId>
251         </dependency>
252         <dependency>
253             <groupId>org.opendaylight.openflowplugin.applications</groupId>
254             <artifactId>bulk-o-matic</artifactId>
255         </dependency>
256         <dependency>
257             <groupId>org.opendaylight.openflowplugin.applications</groupId>
258             <artifactId>notification-supplier</artifactId>
259             <type>xml</type>
260             <classifier>config</classifier>
261         </dependency>
262         <dependency>
263             <groupId>org.opendaylight.openflowplugin.applications</groupId>
264             <artifactId>notification-supplier</artifactId>
265         </dependency>
266     </dependencies>
267
268 </project>