Bump versions to Sodium SR4
[l2switch.git] / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <groupId>org.opendaylight.l2switch</groupId>
5   <artifactId>l2switch</artifactId>
6   <version>0.8.0-SNAPSHOT</version>
7   <packaging>pom</packaging>
8   <name>l2switch</name> <!-- Used by Sonar to set project name -->
9
10   <modules>
11     <module>parent</module>
12     <module>packethandler</module>
13     <module>loopremover</module>
14     <module>arphandler</module>
15     <module>addresstracker</module>
16     <module>hosttracker</module>
17     <module>l2switch-main</module>
18     <module>distribution/karaf</module>
19     <module>features</module>
20     <module>artifacts</module>
21   </modules>
22   <scm>
23     <connection>scm:git:ssh://git.opendaylight.org:29418/l2switch.git</connection>
24     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/l2switch.git</developerConnection>
25     <tag>HEAD</tag>
26     <url>https://wiki.opendaylight.org/view/L2_Switch:Main</url>
27   </scm>
28   <distributionManagement>
29     <!-- OpenDayLight Released artifact -->
30     <repository>
31       <id>opendaylight-release</id>
32       <url>${nexusproxy}/repositories/opendaylight.release/</url>
33     </repository>
34     <!-- OpenDayLight Snapshot artifact -->
35     <snapshotRepository>
36       <id>opendaylight-snapshot</id>
37       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
38     </snapshotRepository>
39     <site>
40       <id>${project.artifactId}-site</id>
41       <url>./</url>
42     </site>
43   </distributionManagement>
44 </project>