ddt-jdk6
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.jbowkett</groupId>
<artifactId>ddt-jdk6</artifactId>
<version>0.9.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.jbowkett</groupId>
<artifactId>ddt-jdk6</artifactId>
<version>0.9.0</version>
<name>DDT</name>
<description>DDT is a database mocking library for unit testing without the need for a database.</description>
<url>https://github.com/jbowkett/ddt</url>
<licenses>
<license>
<name>The unlicense</name>
<url>http://www.unlicense.org</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>jbowkett</id>
<name>James Bowkett</name>
<email>james@bowkett.info</email>
<url>https://github.com/jbowkett</url>
</developer>
</developers>
<scm>
<connection>scm:git@github.com:jbowkett/ddt.git</connection>
<developerConnection>scm:git@github.com:jbowkett/ddt.git</developerConnection>
<url>https://github.com:jbowkett/ddt.git</url>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>1.6.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.18.2-GA</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.2.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.6.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>