Merge "DeviceState changes"
[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
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
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>features-mdsal</artifactId>
102             <classifier>features</classifier>
103             <type>xml</type>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.yangtools</groupId>
107             <artifactId>features-yangtools</artifactId>
108             <classifier>features</classifier>
109             <type>xml</type>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.netconf</groupId>
113             <artifactId>features-restconf</artifactId>
114             <classifier>features</classifier>
115             <type>xml</type>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.openflowjava</groupId>
119             <artifactId>features-openflowjava</artifactId>
120             <classifier>features</classifier>
121             <type>xml</type>
122         </dependency>
123
124         <!-- bundle dependencies -->
125         <dependency>
126             <groupId>org.opendaylight.openflowplugin.model</groupId>
127             <artifactId>model-flow-base</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.openflowplugin.model</groupId>
131             <artifactId>model-flow-service</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.openflowplugin.model</groupId>
135             <artifactId>model-flow-statistics</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.controller.model</groupId>
139             <artifactId>model-inventory</artifactId>
140         </dependency>
141         <dependency>
142             <groupId>org.opendaylight.controller.model</groupId>
143             <artifactId>model-topology</artifactId>
144         </dependency>
145
146         <dependency>
147             <groupId>org.opendaylight.openflowplugin.applications</groupId>
148             <artifactId>forwardingrules-manager</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>org.opendaylight.openflowplugin.applications</groupId>
152             <artifactId>inventory-manager</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>org.opendaylight.openflowplugin.applications</groupId>
156             <artifactId>lldp-speaker</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>org.opendaylight.openflowplugin.applications</groupId>
160             <artifactId>statistics-manager</artifactId>
161         </dependency>
162
163         <dependency>
164             <groupId>org.opendaylight.dlux</groupId>
165             <artifactId>features-dlux</artifactId>
166             <version>${dlux.version}</version>
167             <classifier>features</classifier>
168             <type>xml</type>
169         </dependency>
170
171         <!-- bundle dependencies -->
172         <dependency>
173             <groupId>org.opendaylight.openflowplugin</groupId>
174             <artifactId>openflowplugin-api</artifactId>
175         </dependency>
176         <dependency>
177             <groupId>org.opendaylight.openflowplugin</groupId>
178             <artifactId>openflowplugin-extension-api</artifactId>
179         </dependency>
180         <dependency>
181             <groupId>org.opendaylight.openflowplugin</groupId>
182             <artifactId>openflowplugin</artifactId>
183         </dependency>
184         <dependency>
185             <groupId>org.opendaylight.openflowplugin</groupId>
186             <artifactId>openflowplugin-impl</artifactId>
187         </dependency>
188         <dependency>
189             <groupId>org.opendaylight.openflowplugin</groupId>
190             <artifactId>openflowplugin-blueprint-config-he</artifactId>
191             <version>${project.version}</version>
192         </dependency>
193         <dependency>
194             <groupId>org.opendaylight.openflowplugin.applications</groupId>
195             <artifactId>table-miss-enforcer</artifactId>
196         </dependency>
197
198         <dependency>
199             <groupId>org.opendaylight.openflowplugin.applications</groupId>
200             <artifactId>topology-lldp-discovery</artifactId>
201         </dependency>
202         <dependency>
203             <groupId>org.opendaylight.openflowplugin.applications</groupId>
204             <artifactId>topology-manager</artifactId>
205         </dependency>
206
207         <dependency>
208             <groupId>org.opendaylight.openflowplugin.applications</groupId>
209             <artifactId>of-switch-config-pusher</artifactId>
210         </dependency>
211
212         <dependency>
213             <groupId>org.opendaylight.openflowplugin</groupId>
214             <artifactId>drop-test-karaf</artifactId>
215         </dependency>
216         <dependency>
217             <groupId>org.opendaylight.openflowplugin</groupId>
218             <artifactId>test-common</artifactId>
219         </dependency>
220         <dependency>
221             <groupId>org.opendaylight.openflowplugin</groupId>
222             <artifactId>openflowplugin-controller-config</artifactId>
223             <type>xml</type>
224             <classifier>config-He</classifier>
225         </dependency>
226         <dependency>
227             <groupId>org.opendaylight.openflowplugin</groupId>
228             <artifactId>openflowplugin-controller-config</artifactId>
229             <type>xml</type>
230             <classifier>configmsgspy</classifier>
231         </dependency>
232         <dependency>
233             <groupId>org.opendaylight.controller</groupId>
234             <artifactId>liblldp</artifactId>
235             <version>${lldp.version}</version>
236         </dependency>
237         <dependency>
238             <groupId>org.opendaylight.openflowplugin</groupId>
239             <artifactId>openflowplugin-common</artifactId>
240         </dependency>
241         <dependency>
242             <groupId>org.opendaylight.openflowplugin.applications</groupId>
243             <artifactId>bulk-o-matic</artifactId>
244         </dependency>
245         <dependency>
246             <groupId>org.opendaylight.openflowplugin.applications</groupId>
247             <artifactId>bulk-o-matic</artifactId>
248             <type>xml</type>
249             <classifier>config</classifier>
250         </dependency>
251     </dependencies>
252
253     <scm>
254         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
255         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
256         <tag>HEAD</tag>
257         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
258     </scm>
259 </project>