Set jupiter dependencies as optional. Remove boot plugin dependency from

wiremock standalone sample.
This commit is contained in:
Olga Maciaszek-Sharma
2018-10-18 18:24:26 +02:00
parent bd4783eefd
commit 64d1372fd6
2 changed files with 2 additions and 4 deletions

View File

@@ -72,10 +72,6 @@
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>

View File

@@ -156,10 +156,12 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>