blob: 41d8301b3a39273e678c46c32a608fe0b9d468aa [file] [log] [blame]
<?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>features-parent</artifactId>
<version>1.7.0-SNAPSHOT</version>
<relativePath/>
</parent>
<groupId>org.opendaylight.l2switch</groupId>
<artifactId>features-l2switch</artifactId>
<version>0.4.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description> <!-- Provide a Description it will be visible in the shell CLI--> </description>
<properties>
<dlux.version>0.4.0-SNAPSHOT</dlux.version>
<mdsal.version>1.4.0-SNAPSHOT</mdsal.version>
<openflow.plugin.version>0.3.0-SNAPSHOT</openflow.plugin.version>
<restconf.version>1.4.0-SNAPSHOT</restconf.version>
<config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
<config.packethandler.configfile>50-packethandler.xml</config.packethandler.configfile>
<config.loopremover.configfile>52-loopremover.xml</config.loopremover.configfile>
<config.arphandler.configfile>54-arphandler.xml</config.arphandler.configfile>
<config.addresstracker.configfile>56-addresstracker.xml</config.addresstracker.configfile>
<config.hosttracker.configfile>57-hosttracker.xml</config.hosttracker.configfile>
<config.l2switchmain.configfile>58-l2switchmain.xml</config.l2switchmain.configfile>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.opendaylight.l2switch</groupId>
<artifactId>l2switch-parent</artifactId>
<version>${project.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.opendaylight.openflowplugin</groupId>
<artifactId>features-openflowplugin</artifactId>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opendaylight.controller</groupId>
<artifactId>features-mdsal</artifactId>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opendaylight.netconf</groupId>
<artifactId>features-restconf</artifactId>
<classifier>features</classifier>
<version>${restconf.version}</version>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opendaylight.dlux</groupId>
<artifactId>features-dlux</artifactId>
<version>${dlux.version}</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<!-- bundles used by features directly -->
<dependency>
<groupId>org.opendaylight.l2switch.packethandler</groupId>
<artifactId>packethandler-model</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.packethandler</groupId>
<artifactId>packethandler-impl</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.packethandler</groupId>
<artifactId>packethandler-config</artifactId>
<type>xml</type>
<classifier>config</classifier>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.addresstracker</groupId>
<artifactId>addresstracker-model</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.addresstracker</groupId>
<artifactId>addresstracker-config</artifactId>
<type>xml</type>
<classifier>config</classifier>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.addresstracker</groupId>
<artifactId>addresstracker-impl</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.loopremover</groupId>
<artifactId>loopremover-model</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.loopremover</groupId>
<artifactId>loopremover-impl</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.loopremover</groupId>
<artifactId>loopremover-config</artifactId>
<type>xml</type>
<classifier>config</classifier>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.hosttracker</groupId>
<artifactId>hosttracker-model</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.hosttracker</groupId>
<artifactId>hosttracker-impl</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.hosttracker</groupId>
<artifactId>hosttracker-config</artifactId>
<type>xml</type>
<classifier>config</classifier>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.main</groupId>
<artifactId>main-impl</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.main</groupId>
<artifactId>main-config</artifactId>
<type>xml</type>
<classifier>config</classifier>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.arphandler</groupId>
<artifactId>arphandler-impl</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.l2switch.arphandler</groupId>
<artifactId>arphandler-config</artifactId>
<type>xml</type>
<classifier>config</classifier>
</dependency>
</dependencies>
</project>