testify-gradle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.ehdev.testify</groupId>
<artifactId>testify-gradle</artifactId>
<version>1.0.6</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>io.ehdev.testify</groupId>
<artifactId>testify-gradle</artifactId>
<version>1.0.6</version>
<name>testify</name>
<description>a project to aid in development requireing databases</description>
<url>https://github.com/ethankhall/testify</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>https://github.com/ethankhall/testify/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>ethankhall</id>
<name>Ethan Hall</name>
<email>maven@ehdev.io</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com/ethankhall/testify.git</connection>
<developerConnection>scm:gitgit@github.com:ethankhall/testify.git</developerConnection>
<url>git@github.com/ethankhall/testify.git</url>
</scm>
<dependencies>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.174</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>