manager.it.base
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.opendaylight.vtn</groupId>
<artifactId>manager.it.base</artifactId>
<version>0.8.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
#
# Copyright (c) 2016 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.it.common</artifactId>
<version>0.8.0</version>
<relativePath>../common</relativePath>
</parent>
<artifactId>manager.it.base</artifactId>
<packaging>jar</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>
<dependencies>
<!-- OpenDaylight controller -->
<dependency>
<groupId>org.opendaylight.controller</groupId>
<artifactId>mdsal-it-base</artifactId>
</dependency>
<!-- Pax Exam -->
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-container-karaf</artifactId>
<scope>compile</scope>
</dependency>
<!-- SLF4J -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</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>
<!-- Sonar -->
<dependency>
<groupId>org.sonarsource.java</groupId>
<artifactId>sonar-jacoco-listeners</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>