testutils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.opendaylight.yangtools</groupId>
<artifactId>testutils</artifactId>
<version>15.1.1</version>
</dependency><?xml version="1.0"?>
<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>odlparent</artifactId>
<version>14.3.2</version>
<relativePath/>
</parent>
<groupId>org.opendaylight.yangtools</groupId>
<artifactId>testutils</artifactId>
<version>15.1.1</version>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>Random test utilities</description>
<properties>
<!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
<doclint>all,-missing</doclint>
</properties>
<dependencies>
<!--
NOTE: The use of <scope> here is a little particular, compared to other standard projects...
As this test helper project is intended to itself be used as a scope=test dependency so that
the utility code in src/main/java of this project can be used to write src/test/java code in
projects using it, all dependencies here are scope=compile here (the default, don't mention it),
and NOT scope=test.
(Only a dependency which only this project would want to use in its own src/test/java code
but not expose to projects depending on it would be scope=test. However that kind of against
the whole point of this project, and currently there no such dependencies here.
-->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
</dependencies>
<scm>
<connection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</connection>
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</developerConnection>
<tag>HEAD</tag>
<url>https://wiki.opendaylight.org/display/ODL/YANG+Tools</url>
</scm>
</project>