manager.it.util
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.opendaylight.vtn</groupId>
<artifactId>manager.it.util</artifactId>
<version>0.8.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
#
# Copyright (c) 2015 NEC Corporation
# 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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.opendaylight.vtn</groupId>
<artifactId>manager.common.java</artifactId>
<version>0.8.0</version>
<relativePath>../../common/java</relativePath>
</parent>
<artifactId>manager.it.util</artifactId>
<packaging>bundle</packaging>
<scm>
<connection>scm:git:https://git.opendaylight.org/gerrit/p/vtn.git</connection>
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/vtn.git</developerConnection>
<url>https://wiki.opendaylight.org/view/OpenDaylight_Virtual_Tenant_Network_%28VTN%29:Main</url>
<tag>HEAD</tag>
</scm>
<properties>
<vtn.manager.dir>../..</vtn.manager.dir>
<!-- Exclude all files from Sonar analysis. -->
<sonar.exclusions>src/main/java/**/*</sonar.exclusions>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>
org.opendaylight.vtn.manager.it.util*
</Export-Package>
<Service-Component/>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- VTN Manager bundles -->
<dependency>
<groupId>org.opendaylight.vtn</groupId>
<artifactId>manager.implementation</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.vtn</groupId>
<artifactId>manager.it.ofmock</artifactId>
<version>${project.version}</version>
</dependency>
<!-- OSGi framework -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<!-- OpenDaylight MD-SAL -->
<dependency>
<groupId>org.opendaylight.controller.model</groupId>
<artifactId>model-inventory</artifactId>
</dependency>
<!-- OpenDaylight openflowplugin -->
<dependency>
<groupId>org.opendaylight.openflowplugin.model</groupId>
<artifactId>model-flow-service</artifactId>
</dependency>
<!-- JUnit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>