-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpom.xml
More file actions
42 lines (37 loc) · 1.53 KB
/
Copy pathpom.xml
File metadata and controls
42 lines (37 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opendaylight.odlparent</groupId>
<artifactId>odlparent-lite</artifactId>
<version>14.3.1</version>
<relativePath/>
</parent>
<groupId>org.opendaylight.l2switch</groupId>
<artifactId>l2switch</artifactId>
<version>4.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>l2switch</name> <!-- Used by Sonar to set project name -->
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.install.skip>true</maven.install.skip>
</properties>
<modules>
<module>artifacts</module>
<module>features</module>
<module>binding-parent</module>
<module>distribution/karaf</module>
<module>addresstracker</module>
<module>arphandler</module>
<module>hosttracker</module>
<module>l2switch-main</module>
<module>loopremover</module>
<module>packethandler</module>
</modules>
<scm>
<connection>scm:git:ssh://git.opendaylight.org:29418/l2switch.git</connection>
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/l2switch.git</developerConnection>
<tag>HEAD</tag>
<url>https://wiki.opendaylight.org/view/L2_Switch:Main</url>
</scm>
</project>