Skip to content

Commit

Permalink
Upgrade wiremock to latest version. Still doesn't solve running with …
Browse files Browse the repository at this point in the history
…Java 21 yet.
  • Loading branch information
causalnet committed May 13, 2024
1 parent 998cf55 commit b91a2ed
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<version>2.34.0</version>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<version>3.5.4</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
10 changes: 5 additions & 5 deletions src/it/proxy-auth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
<plugins>
<!-- This is the proxy server that we expect autojdk to pick up -->
<plugin>
<groupId>uk.co.automatictester</groupId>
<groupId>io.buildlogic</groupId>
<artifactId>wiremock-maven-plugin</artifactId>
<version>7.2.0</version>
<version>8.0.0</version>
<configuration>
<params>--port=8081 --bind-address 127.0.0.1 --enable-browser-proxying --verbose</params>
<dir>${project.basedir}/wiremock</dir>
Expand All @@ -49,9 +49,9 @@
</executions>
<dependencies>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<version>2.34.0</version>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<version>3.5.4</version>
</dependency>
</dependencies>
</plugin>
Expand Down
10 changes: 5 additions & 5 deletions src/it/proxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
<plugins>
<!-- This is the proxy server that we expect autojdk to pick up -->
<plugin>
<groupId>uk.co.automatictester</groupId>
<groupId>io.buildlogic</groupId>
<artifactId>wiremock-maven-plugin</artifactId>
<version>7.2.0</version>
<version>8.0.0</version>
<configuration>
<params>--port=8081 --bind-address 127.0.0.1 --enable-browser-proxying --verbose</params>
<dir>${project.basedir}/wiremock</dir>
Expand All @@ -49,9 +49,9 @@
</executions>
<dependencies>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<version>2.34.0</version>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<version>3.5.4</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit b91a2ed

Please sign in to comment.