Skip to content

Commit

Permalink
fix($POM): add test dependency
Browse files Browse the repository at this point in the history
org.springframework.boot:spring-boot-starter-test
  • Loading branch information
Johnny Miller (锺俊) committed Dec 18, 2020
1 parent e69537a commit 401587d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions gateway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,17 @@
<artifactId>spring-cloud-starter-zipkin</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@
</profiles>

<!-- Global Dependencies -->
<!-- [CAUTION]: All the dependencies are in parent pom should be utilization dependency. -->
<dependencies>
<!-- Other -->
<dependency>
Expand Down

0 comments on commit 401587d

Please sign in to comment.