Skip to content

Commit

Permalink
Upgrade to WireMock 3 (#715)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalluck authored Nov 6, 2024
1 parent a965a71 commit df8c68c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
5 changes: 0 additions & 5 deletions maven-version-rules.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@
<ignoreVersion type="regex">.+-M\d+</ignoreVersion>
</ignoreVersions>
<rules>
<rule groupId="com.github.tomakehurst" comparisonMethod="maven">
<ignoreVersions>
<ignoreVersion type="regex">[^2]\..+</ignoreVersion>
</ignoreVersions>
</rule>
<rule groupId="io.quarkus" comparisonMethod="maven">
<ignoreVersions>
<ignoreVersion type="regex">[^2]\..+</ignoreVersion>
Expand Down
24 changes: 12 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
<version.com.github.eirslett>1.9.1</version.com.github.eirslett>
<version.com.github.ekryd.sortpom>4.0.0</version.com.github.ekryd.sortpom>
<version.com.github.spotbugs>4.8.6.5</version.com.github.spotbugs>
<version.com.github.tomakehurst-wiremock-jre8>2.35.2</version.com.github.tomakehurst-wiremock-jre8>
<version.com.mycila>4.6</version.com.mycila>
<version.com.puppycrawl.tools>10.20.0</version.com.puppycrawl.tools>
<version.git-commit-id-plugin>4.9.10</version.git-commit-id-plugin>
Expand Down Expand Up @@ -106,6 +105,7 @@
<version.org.jboss.resteasy>6.2.10.Final</version.org.jboss.resteasy>
<version.org.junit-pioneer>2.3.0</version.org.junit-pioneer>
<version.org.sonatype.plugins.nexus-staging-maven-plugin>1.7.0</version.org.sonatype.plugins.nexus-staging-maven-plugin>
<version.org.wiremock>3.9.2</version.org.wiremock>
<version.pnc.quarkus-logging-kafka>1.0.6</version.pnc.quarkus-logging-kafka>
</properties>

Expand Down Expand Up @@ -152,18 +152,18 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<version>${version.com.github.tomakehurst-wiremock-jre8}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
<version>${version.org.junit-pioneer}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock-standalone</artifactId>
<version>${version.org.wiremock}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -270,11 +270,6 @@
<artifactId>infinispan-component-annotations</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
Expand All @@ -301,6 +296,11 @@
<artifactId>junit-pioneer</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock-standalone</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<repositories>
Expand Down

0 comments on commit df8c68c

Please sign in to comment.