Added Slf4j as a compile dependency for Stub Runner Boot; fixes gh-1840

This commit is contained in:
Marcin Grzejszczak
2022-11-16 14:10:44 +01:00
parent 68bdbed2d0
commit ea5755bca9
2 changed files with 11 additions and 0 deletions

View File

@@ -75,6 +75,12 @@
<artifactId>spring-cloud-contract-stub-runner-boot</artifactId>
<scope>compile</scope>
</dependency>
<!-- Otherwise dependency is provided and class is missing -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<build>

View File

@@ -29,6 +29,11 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>