Bump versions by 0.1.0 for next dev cycle
[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.8.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.l2switch</groupId>
14   <artifactId>features-l2switch</artifactId>
15   <version>0.5.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.5.0-SNAPSHOT</dlux.version>
22     <mdsal.version>1.5.0-SNAPSHOT</mdsal.version>
23     <openflow.plugin.version>0.4.0-SNAPSHOT</openflow.plugin.version>
24     <restconf.version>1.5.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.addresstracker</groupId>
78       <artifactId>addresstracker-model</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.l2switch.addresstracker</groupId>
82       <artifactId>addresstracker-impl</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.l2switch.loopremover</groupId>
86       <artifactId>loopremover-model</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.l2switch.loopremover</groupId>
90       <artifactId>loopremover-impl</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.l2switch.hosttracker</groupId>
94       <artifactId>hosttracker-model</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.l2switch.hosttracker</groupId>
98       <artifactId>hosttracker-impl</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.l2switch.main</groupId>
102       <artifactId>main-impl</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.l2switch.arphandler</groupId>
106       <artifactId>arphandler-impl</artifactId>
107     </dependency>
108   </dependencies>
109 </project>