Adding ipv4packet module.
[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.1.0-SNAPSHOT</version>
7   <packaging>pom</packaging>
8   <prerequisites>
9     <maven>3.0</maven>
10   </prerequisites>
11   <modules>
12     <module>parent</module>
13     <module>packethandler</module>
14     <module>arppacket</module>
15     <module>ipv4packet</module>
16     <module>endpointtracker</module>
17   </modules>
18   <scm>
19     <connection>scm:git:ssh://git.opendaylight.org:29418/l2switch.git</connection>
20     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/l2switch.git</developerConnection>
21     <tag>HEAD</tag>
22     <url>https://wiki.opendaylight.org/view/L2_Switch:Main</url>
23   </scm>
24   <distributionManagement>
25     <!-- OpenDayLight Released artifact -->
26     <repository>
27       <id>opendaylight-release</id>
28       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.release/</url>
29     </repository>
30     <!-- OpenDayLight Snapshot artifact -->
31     <snapshotRepository>
32       <id>opendaylight-snapshot</id>
33       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
34     </snapshotRepository>
35     <site>
36       <id>${project.artifactId}-site</id>
37       <url>./</url>
38     </site>
39   </distributionManagement>
40 </project>