Remove forwarding-rules manager config yang and XML
[openflowplugin.git] / features-li / 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-li</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
26         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
27         <restconf.version>1.4.0-SNAPSHOT</restconf.version>
28         <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
29     </properties>
30
31     <dependencyManagement>
32         <dependencies>
33             <!-- This project -->
34             <dependency>
35                 <groupId>org.opendaylight.openflowplugin</groupId>
36                 <artifactId>openflowplugin-artifacts</artifactId>
37                 <version>${project.version}</version>
38                 <scope>import</scope>
39                 <type>pom</type>
40             </dependency>
41
42             <!-- YANG tools -->
43             <dependency>
44                 <groupId>org.opendaylight.yangtools</groupId>
45                 <artifactId>yangtools-artifacts</artifactId>
46                 <version>${yangtools.version}</version>
47                 <scope>import</scope>
48                 <type>pom</type>
49             </dependency>
50
51             <!-- Controller infrastructure -->
52             <dependency>
53                 <groupId>org.opendaylight.controller</groupId>
54                 <artifactId>config-artifacts</artifactId>
55                 <version>${config.version}</version>
56                 <scope>import</scope>
57                 <type>pom</type>
58             </dependency>
59             <dependency>
60                 <groupId>org.opendaylight.controller</groupId>
61                 <artifactId>mdsal-artifacts</artifactId>
62                 <version>${mdsal.version}</version>
63                 <scope>import</scope>
64                 <type>pom</type>
65             </dependency>
66
67             <!-- restconf -->
68             <dependency>
69                 <groupId>org.opendaylight.netconf</groupId>
70                 <artifactId>restconf-artifacts</artifactId>
71                 <version>${restconf.version}</version>
72                 <scope>import</scope>
73                 <type>pom</type>
74             </dependency>
75
76
77             <!-- OpenFlowJava -->
78             <dependency>
79                 <groupId>org.opendaylight.openflowjava</groupId>
80                 <artifactId>openflowjava-artifacts</artifactId>
81                 <version>${openflowjava.version}</version>
82                 <scope>import</scope>
83                 <type>pom</type>
84             </dependency>
85         </dependencies>
86     </dependencyManagement>
87
88     <dependencies>
89         <!-- feature dependencies -->
90         <dependency>
91             <groupId>org.opendaylight.mdsal.model</groupId>
92             <artifactId>features-mdsal-model</artifactId>
93             <version>${mdsal.model.version}</version>
94             <classifier>features</classifier>
95             <type>xml</type>
96             <scope>runtime</scope>
97         </dependency>
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.applications</groupId>
167             <artifactId>statistics-manager-config</artifactId>
168             <classifier>config</classifier>
169             <type>xml</type>
170         </dependency>
171         <dependency>
172             <groupId>org.opendaylight.openflowplugin</groupId>
173             <artifactId>openflowplugin-blueprint-config</artifactId>
174             <version>${project.version}</version>
175         </dependency>
176
177         <dependency>
178             <groupId>org.opendaylight.dlux</groupId>
179             <artifactId>features-dlux</artifactId>
180             <version>${dlux.version}</version>
181             <classifier>features</classifier>
182             <type>xml</type>
183         </dependency>
184
185         <!-- bundle dependencies -->
186         <dependency>
187             <groupId>org.opendaylight.openflowplugin</groupId>
188             <artifactId>openflowplugin-api</artifactId>
189         </dependency>
190         <dependency>
191             <groupId>org.opendaylight.openflowplugin</groupId>
192             <artifactId>openflowplugin-extension-api</artifactId>
193         </dependency>
194         <dependency>
195             <groupId>org.opendaylight.openflowplugin</groupId>
196             <artifactId>openflowplugin</artifactId>
197         </dependency>
198         <dependency>
199             <groupId>org.opendaylight.openflowplugin</groupId>
200             <artifactId>openflowplugin-impl</artifactId>
201         </dependency>
202         <dependency>
203             <groupId>org.opendaylight.openflowplugin.applications</groupId>
204             <artifactId>table-miss-enforcer</artifactId>
205         </dependency>
206         <dependency>
207             <groupId>org.opendaylight.openflowplugin.applications</groupId>
208             <artifactId>table-miss-enforcer</artifactId>
209             <type>xml</type>
210             <classifier>config</classifier>
211         </dependency>
212
213         <dependency>
214             <groupId>org.opendaylight.openflowplugin.applications</groupId>
215             <artifactId>topology-lldp-discovery</artifactId>
216         </dependency>
217         <dependency>
218             <groupId>org.opendaylight.openflowplugin.applications</groupId>
219             <artifactId>topology-lldp-discovery</artifactId>
220             <type>xml</type>
221             <classifier>config</classifier>
222         </dependency>
223
224         <dependency>
225             <groupId>org.opendaylight.openflowplugin.applications</groupId>
226             <artifactId>topology-manager</artifactId>
227         </dependency>
228         <dependency>
229             <groupId>org.opendaylight.openflowplugin.applications</groupId>
230             <artifactId>topology-manager</artifactId>
231             <type>xml</type>
232             <classifier>config</classifier>
233         </dependency>
234
235         <dependency>
236             <groupId>org.opendaylight.openflowplugin.applications</groupId>
237             <artifactId>of-switch-config-pusher</artifactId>
238         </dependency>
239         <dependency>
240             <groupId>org.opendaylight.openflowplugin.applications</groupId>
241             <artifactId>of-switch-config-pusher</artifactId>
242             <type>xml</type>
243             <classifier>config</classifier>
244         </dependency>
245
246         <dependency>
247             <groupId>org.opendaylight.openflowplugin.applications</groupId>
248             <artifactId>lldp-speaker</artifactId>
249             <type>xml</type>
250             <classifier>config</classifier>
251         </dependency>
252
253         <dependency>
254             <groupId>org.opendaylight.openflowplugin</groupId>
255             <artifactId>drop-test-karaf</artifactId>
256         </dependency>
257         <dependency>
258             <groupId>org.opendaylight.openflowplugin</groupId>
259             <artifactId>test-common</artifactId>
260         </dependency>
261         <dependency>
262             <groupId>org.opendaylight.openflowplugin</groupId>
263             <artifactId>openflowplugin-controller-config</artifactId>
264             <type>xml</type>
265             <classifier>config-Li</classifier>
266         </dependency>
267         <dependency>
268             <groupId>org.opendaylight.openflowplugin</groupId>
269             <artifactId>openflowplugin-controller-config</artifactId>
270             <type>xml</type>
271             <classifier>configmsgspy</classifier>
272         </dependency>
273         <dependency>
274             <groupId>org.opendaylight.controller</groupId>
275             <artifactId>liblldp</artifactId>
276             <version>${lldp.version}</version>
277         </dependency>
278         <dependency>
279             <groupId>org.opendaylight.openflowplugin</groupId>
280             <artifactId>openflowplugin-common</artifactId>
281         </dependency>
282         <dependency>
283             <groupId>org.opendaylight.openflowplugin.applications</groupId>
284             <artifactId>bulk-o-matic</artifactId>
285         </dependency>
286         <dependency>
287             <groupId>org.opendaylight.openflowplugin.applications</groupId>
288             <artifactId>bulk-o-matic</artifactId>
289             <type>xml</type>
290             <classifier>config</classifier>
291         </dependency>
292         <dependency>
293             <groupId>org.opendaylight.openflowplugin.applications</groupId>
294             <artifactId>notification-supplier</artifactId>
295             <type>xml</type>
296             <classifier>config</classifier>
297         </dependency>
298         <dependency>
299             <groupId>org.opendaylight.openflowplugin.applications</groupId>
300             <artifactId>notification-supplier</artifactId>
301         </dependency>
302     </dependencies>
303 </project>