Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
basdijkstra committed Dec 7, 2023
1 parent 92446bc commit 4b27d61
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 17 deletions.
21 changes: 7 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<restassured.version>5.3.0</restassured.version>
<junit.version>5.9.2</junit.version>
<jackson.databind.version>2.14.2</jackson.databind.version>
<json.version>20231013</json.version>
<wiremock.version>2.35.1</wiremock.version>
<slf4j.version>2.0.7</slf4j.version>
<restassured.version>5.3.2</restassured.version>
<junit.version>5.10.1</junit.version>
<jackson.databind.version>2.16.0</jackson.databind.version>
<wiremock.version>3.3.1</wiremock.version>
<slf4j.version>2.0.9</slf4j.version>
<maven.surefire.plugin.version>3.0.0</maven.surefire.plugin.version>
</properties>
<dependencies>
Expand Down Expand Up @@ -44,14 +43,8 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${json.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<version>${wiremock.version}</version>
<scope>test</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/answers/RestAssuredAnswers5Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class RestAssuredAnswers5Test {
static WireMockExtension wiremock = WireMockExtension.newInstance()
.options(wireMockConfig()
.port(9876)
.extensions(new ResponseTemplateTransformer(true)))
.globalTemplating(true))
.build();

@BeforeEach
Expand Down
1 change: 0 additions & 1 deletion src/test/java/examples/RestAssuredExamplesGraphQLTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import io.restassured.http.ContentType;
import org.junit.jupiter.api.Test;
import org.json.JSONObject;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/exercises/RestAssuredExercises5Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class RestAssuredExercises5Test {
static WireMockExtension wiremock = WireMockExtension.newInstance()
.options(wireMockConfig()
.port(9876)
.extensions(new ResponseTemplateTransformer(true)))
.globalTemplating(true))
.build();

@BeforeEach
Expand Down

0 comments on commit 4b27d61

Please sign in to comment.