features-plugin2oc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.opendaylight.plugin2oc</groupId>
<artifactId>features-plugin2oc</artifactId>
<version>0.1.3-Helium-SR3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v1.0 which accompanies this distribution,
and is available at http://www.eclipse.org/legal/epl-v10.html
-->
<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>
<artifactId>plugin2oc.project</artifactId>
<groupId>org.opendaylight.plugin2oc</groupId>
<version>0.1.3-Helium-SR3</version>
</parent>
<artifactId>features-plugin2oc</artifactId>
<groupId>org.opendaylight.plugin2oc</groupId>
<packaging>jar</packaging>
<properties>
<features.file>features.xml</features.file>
<branding.version>1.0.3-Helium-SR3</branding.version>
<karaf.resources.version>1.4.5-Helium-SR3</karaf.resources.version>
<karaf.version>3.0.1</karaf.version>
<feature.test.version>0.6.5-Helium-SR3</feature.test.version>
<karaf.empty.version>1.4.5-Helium-SR3</karaf.empty.version>
<surefire.version>2.17</surefire.version>
<yangtools.version>0.6.5-Helium-SR3</yangtools.version>
</properties>
<dependencies>
<dependency>
<groupId>org.opendaylight.yangtools</groupId>
<artifactId>features-yangtools</artifactId>
<version>0.6.5-Helium-SR3</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opendaylight.controller</groupId>
<artifactId>features-nsf</artifactId>
<version>0.4.5-Helium-SR3</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opendaylight.controller</groupId>
<artifactId>features-adsal</artifactId>
<version>0.8.4-Helium-SR3</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opendaylight.controller</groupId>
<artifactId>features-base</artifactId>
<version>1.4.5-Helium-SR3</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opendaylight.controller</groupId>
<artifactId>features-mdsal</artifactId>
<version>1.1.3-Helium-SR3</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.opendaylight.controller</groupId>
<artifactId>sal</artifactId>
<version>0.8.4-Helium-SR3</version>
</dependency>
<dependency>
<groupId>org.opendaylight.controller</groupId>
<artifactId>sal-binding-api</artifactId>
<version>1.1.3-Helium-SR3</version>
</dependency>
<dependency>
<groupId>org.opendaylight.controller</groupId>
<version>0.4.5-Helium-SR3</version>
<artifactId>networkconfig.neutron</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.plugin2oc</groupId>
<version>0.1.3-Helium-SR3</version>
<artifactId>plugin2oc.neutron</artifactId>
</dependency>
<!-- test the features.xml -->
<dependency>
<groupId>org.opendaylight.yangtools</groupId>
<artifactId>features-test</artifactId>
<version>0.6.5-Helium-SR3</version>
<scope>test</scope>
</dependency>
<!-- dependency for opendaylight-karaf-empty for use by testing -->
<dependency>
<groupId>org.opendaylight.controller</groupId>
<artifactId>opendaylight-karaf-empty</artifactId>
<version>1.4.5-Helium-SR3</version>
<type>zip</type>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>filter</id>
<phase>generate-resources</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/classes/${features.file}</file>
<type>xml</type>
<classifier>features</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<systemPropertyVariables>
<karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
<karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
<karaf.distro.version>${karaf.empty.version}</karaf.distro.version>
</systemPropertyVariables>
<dependenciesToScan>
<dependency>org.opendaylight.yangtools:features-test</dependency>
</dependenciesToScan>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:ssh://git.opendaylight.org:29418/plugin2oc.git</connection>
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/plugin2oc.git</developerConnection>
<tag>HEAD</tag>
<url>https://git.opendaylight.org/gerrit/gitweb?p=plugin2oc.git;a=summary</url>
</scm>
</project>