wiremock-junit-extension
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.thomaskasene.wiremock</groupId> <artifactId>wiremock-junit-extension</artifactId> <version>1.0.2.RELEASE</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"> <modelVersion>4.0.0</modelVersion> <groupId>com.thomaskasene.wiremock</groupId> <artifactId>wiremock-junit-extension</artifactId> <version>1.0.2.RELEASE</version> <name>JUnit Jupiter extension for WireMock</name> <description>A JUnit Jupiter extension for starting WireMock before the tests start.</description> <url>https://github.com/ThomasKasene/wiremock-junit-extension</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Thomas Kåsene</name> <url>https://github.com/ThomasKasene</url> </developer> </developers> <scm> <connection>scm:git:git@github.com:ThomasKasene/wiremock-junit-extension.git</connection> <url>https://github.com/ThomasKasene/wiremock-junit-extension</url> </scm> <dependencies> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock-jre8</artifactId> <version>2.33.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.8.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.22</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.36</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> </project>