Merge "Migrate restconf dependencies"
[l2switch.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.odlparent</groupId>
8     <artifactId>features-parent</artifactId>
9     <version>1.6.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.l2switch</groupId>
14   <artifactId>features-l2switch</artifactId>
15   <version>0.3.0-SNAPSHOT</version>
16   <packaging>jar</packaging>
17   <name>${project.artifactId}</name>
18   <description> <!-- Provide a Description it will be visible in the shell CLI--> </description>
19
20   <properties>
21     <dlux.version>0.3.0-SNAPSHOT</dlux.version>
22     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
23     <openflow.plugin.version>0.2.0-SNAPSHOT</openflow.plugin.version>
24     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
25   </properties>
26
27   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>org.opendaylight.l2switch</groupId>
31         <artifactId>l2switch-parent</artifactId>
32         <version>${project.version}</version>
33         <scope>import</scope>
34         <type>pom</type>
35       </dependency>
36     </dependencies>
37   </dependencyManagement>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.openflowplugin</groupId>
42       <artifactId>features-openflowplugin</artifactId>
43       <classifier>features</classifier>
44       <type>xml</type>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>features-mdsal</artifactId>
49       <classifier>features</classifier>
50       <type>xml</type>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.netconf</groupId>
54       <artifactId>features-restconf</artifactId>
55       <classifier>features</classifier>
56       <version>${restconf.version}</version>
57       <type>xml</type>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.dlux</groupId>
61       <artifactId>features-dlux</artifactId>
62       <version>${dlux.version}</version>
63       <classifier>features</classifier>
64       <type>xml</type>
65     </dependency>
66
67     <!-- bundles used by features directly -->
68     <dependency>
69       <groupId>org.opendaylight.l2switch.packethandler</groupId>
70       <artifactId>packethandler-model</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.l2switch.packethandler</groupId>
74       <artifactId>packethandler-impl</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.l2switch.packethandler</groupId>
78       <artifactId>packethandler-config</artifactId>
79       <type>xml</type>
80       <classifier>config</classifier>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.l2switch.addresstracker</groupId>
84       <artifactId>addresstracker-model</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.l2switch.addresstracker</groupId>
88       <artifactId>addresstracker-config</artifactId>
89       <type>xml</type>
90       <classifier>config</classifier>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.l2switch.addresstracker</groupId>
94       <artifactId>addresstracker-impl</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.l2switch.loopremover</groupId>
98       <artifactId>loopremover-model</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.l2switch.loopremover</groupId>
102       <artifactId>loopremover-impl</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.l2switch.loopremover</groupId>
106       <artifactId>loopremover-config</artifactId>
107       <type>xml</type>
108       <classifier>config</classifier>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.l2switch.hosttracker</groupId>
112       <artifactId>hosttracker-model</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.l2switch.hosttracker</groupId>
116       <artifactId>hosttracker-impl</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.l2switch.hosttracker</groupId>
120       <artifactId>hosttracker-config</artifactId>
121       <type>xml</type>
122       <classifier>config</classifier>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.l2switch.main</groupId>
126       <artifactId>main-impl</artifactId>
127     </dependency>
128     <dependency>
129       <groupId>org.opendaylight.l2switch.main</groupId>
130       <artifactId>main-config</artifactId>
131       <type>xml</type>
132       <classifier>config</classifier>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.l2switch.arphandler</groupId>
136       <artifactId>arphandler-impl</artifactId>
137     </dependency>
138     <dependency>
139       <groupId>org.opendaylight.l2switch.arphandler</groupId>
140       <artifactId>arphandler-config</artifactId>
141       <type>xml</type>
142       <classifier>config</classifier>
143     </dependency>
144   </dependencies>
145 </project>