fix wiremock dependency (#1153)

This commit is contained in:
erabii
2022-11-30 20:37:23 +02:00
committed by GitHub
parent f7d8a5d03d
commit 79c1871eb3
3 changed files with 5 additions and 4 deletions

View File

@@ -7,5 +7,5 @@ runs:
shell: bash
run: |
cd spring-cloud-kubernetes-controllers
.././mvnw -T 1C clean install
.././mvnw -T 1C -U clean install
cd ..

View File

@@ -51,10 +51,11 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-contract-stub-runner</artifactId>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8-standalone</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>

View File

@@ -59,7 +59,7 @@ class CatalogWatchIT {
private static final String NAMESPACE = "default";
private static final K3sContainer K3S = Commons.container()
.withLogConsumer(new Slf4jLogConsumer(LoggerFactory.getLogger(CatalogWatchIT.class)));
.withLogConsumer(new Slf4jLogConsumer(LoggerFactory.getLogger(CatalogWatchIT.class)));
private static KubernetesClient client;