Merge "roleContext NodeId change"
[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</groupId>
167             <artifactId>openflowplugin-blueprint-config</artifactId>
168             <version>${project.version}</version>
169         </dependency>
170
171         <dependency>
172             <groupId>org.opendaylight.dlux</groupId>
173             <artifactId>features-dlux</artifactId>
174             <version>${dlux.version}</version>
175             <classifier>features</classifier>
176             <type>xml</type>
177         </dependency>
178
179         <!-- bundle dependencies -->
180         <dependency>
181             <groupId>org.opendaylight.openflowplugin</groupId>
182             <artifactId>openflowplugin-api</artifactId>
183         </dependency>
184         <dependency>
185             <groupId>org.opendaylight.openflowplugin</groupId>
186             <artifactId>openflowplugin-extension-api</artifactId>
187         </dependency>
188         <dependency>
189             <groupId>org.opendaylight.openflowplugin</groupId>
190             <artifactId>openflowplugin</artifactId>
191         </dependency>
192         <dependency>
193             <groupId>org.opendaylight.openflowplugin</groupId>
194             <artifactId>openflowplugin-impl</artifactId>
195         </dependency>
196         <dependency>
197             <groupId>org.opendaylight.openflowplugin.applications</groupId>
198             <artifactId>table-miss-enforcer</artifactId>
199         </dependency>
200
201         <dependency>
202             <groupId>org.opendaylight.openflowplugin.applications</groupId>
203             <artifactId>topology-lldp-discovery</artifactId>
204         </dependency>
205
206         <dependency>
207             <groupId>org.opendaylight.openflowplugin.applications</groupId>
208             <artifactId>topology-manager</artifactId>
209         </dependency>
210
211         <dependency>
212             <groupId>org.opendaylight.openflowplugin.applications</groupId>
213             <artifactId>of-switch-config-pusher</artifactId>
214         </dependency>
215
216         <dependency>
217             <groupId>org.opendaylight.openflowplugin</groupId>
218             <artifactId>drop-test-karaf</artifactId>
219         </dependency>
220         <dependency>
221             <groupId>org.opendaylight.openflowplugin</groupId>
222             <artifactId>test-common</artifactId>
223         </dependency>
224         <dependency>
225             <groupId>org.opendaylight.openflowplugin</groupId>
226             <artifactId>openflowplugin-controller-config</artifactId>
227             <type>xml</type>
228             <classifier>config-Li</classifier>
229         </dependency>
230         <dependency>
231             <groupId>org.opendaylight.openflowplugin</groupId>
232             <artifactId>openflowplugin-controller-config</artifactId>
233             <type>xml</type>
234             <classifier>configmsgspy</classifier>
235         </dependency>
236         <dependency>
237             <groupId>org.opendaylight.controller</groupId>
238             <artifactId>liblldp</artifactId>
239             <version>${lldp.version}</version>
240         </dependency>
241         <dependency>
242             <groupId>org.opendaylight.openflowplugin</groupId>
243             <artifactId>openflowplugin-common</artifactId>
244         </dependency>
245         <dependency>
246             <groupId>org.opendaylight.openflowplugin.applications</groupId>
247             <artifactId>bulk-o-matic</artifactId>
248         </dependency>
249         <dependency>
250             <groupId>org.opendaylight.openflowplugin.applications</groupId>
251             <artifactId>bulk-o-matic</artifactId>
252             <type>xml</type>
253             <classifier>config</classifier>
254         </dependency>
255         <dependency>
256             <groupId>org.opendaylight.openflowplugin.applications</groupId>
257             <artifactId>notification-supplier</artifactId>
258             <type>xml</type>
259             <classifier>config</classifier>
260         </dependency>
261         <dependency>
262             <groupId>org.opendaylight.openflowplugin.applications</groupId>
263             <artifactId>notification-supplier</artifactId>
264         </dependency>
265     </dependencies>
266 </project>