vpnmanager-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opendaylight.netvirt</groupId> <artifactId>vpnmanager-impl</artifactId> <version>0.11.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2015 - 2016 Ericsson India Global Services Pvt Ltd. and others. All rights reserved. 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"> <parent> <groupId>org.opendaylight.netvirt</groupId> <artifactId>binding-parent</artifactId> <version>0.11.4</version> <relativePath>../../commons/binding-parent</relativePath> </parent> <artifactId>vpnmanager-impl</artifactId> <name>ODL :: netvirt :: ${project.artifactId}</name> <packaging>bundle</packaging> <modelVersion>4.0.0</modelVersion> <dependencies> <dependency> <groupId>org.opendaylight.genius</groupId> <artifactId>alivenessmonitor-api</artifactId> <version>${genius.version}</version> </dependency> <dependency> <groupId>org.opendaylight.genius</groupId> <artifactId>arputil-api</artifactId> <version>${genius.version}</version> </dependency> <dependency> <groupId>org.opendaylight.genius</groupId> <artifactId>idmanager-api</artifactId> <version>${genius.version}</version> </dependency> <dependency> <groupId>org.opendaylight.genius</groupId> <artifactId>interfacemanager-api</artifactId> <version>${genius.version}</version> </dependency> <dependency> <groupId>org.opendaylight.genius</groupId> <artifactId>itm-api</artifactId> <version>${genius.version}</version> </dependency> <dependency> <groupId>org.opendaylight.genius</groupId> <artifactId>lockmanager-api</artifactId> <version>${genius.version}</version> </dependency> <dependency> <groupId>org.opendaylight.genius</groupId> <artifactId>mdsalutil-api</artifactId> <version>${genius.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>bgpmanager-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fibmanager-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>natservice-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>neutronvpn-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>vpnmanager-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>elanmanager-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.opendaylight.genius</groupId> <artifactId>ipv6util-api</artifactId> <version>${genius.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ipv6service-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.opendaylight.serviceutils</groupId> <artifactId>upgrade</artifactId> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <!-- Testing dependencies --> <dependency> <groupId>org.opendaylight.mdsal</groupId> <artifactId>mdsal-binding-test-utils</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.aries.blueprint</groupId> <artifactId>blueprint-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <!-- We purposely don't export any packages to avoid any dependencies on this bundle and prevent @Singleton annotated classes from being accidently included in another bundle's blueprint XML --> <Export-Package/> </instructions> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>attach-artifacts</id> <goals> <goal>attach-artifact</goal> </goals> <phase>package</phase> <configuration> <artifacts> <artifact> <file>${project.build.directory}/classes/initial/netvirt-vpnmanager-config.xml </file> <type>xml</type> <classifier>config</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>