drift-testlib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.mikewacker.drift</groupId> <artifactId>drift-testlib</artifactId> <version>0.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.mikewacker.drift</groupId> <artifactId>drift-testlib</artifactId> <version>0.2.0</version> <name>Drift Test Library</name> <description>Library that facilitates testing for a JSON API, using both unit tests and end-to-end tests.</description> <url>https://github.com/mikewacker/drift</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/license/mit/</url> </license> </licenses> <developers> <developer> <id>mikewacker</id> <name>Mike Wacker</name> <email>11431865+mikewacker@users.noreply.github.com</email> <url>https://github.com/mikewacker</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/mikewacker/drift.git</connection> <developerConnection>scm:git:ssh://github.com:mikewacker/drift.git</developerConnection> <url>https://github.com/mikewacker/drift/tree/main</url> </scm> <dependencies> <dependency> <groupId>io.github.mikewacker.drift</groupId> <artifactId>drift-api</artifactId> <version>0.2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> <version>2.24.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.16.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.10.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>mockwebserver</artifactId> <version>4.12.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.undertow</groupId> <artifactId>undertow-core</artifactId> <version>2.3.10.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.24.2</version> <scope>runtime</scope> </dependency> </dependencies> </project>