Skip to content

Commit

Permalink
perf($POM): refine dependency scope for reactive starter
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymillergh committed Aug 9, 2021
1 parent e36092b commit ac8222e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions api-gateway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,15 @@
<artifactId>reactive-spring-cloud-starter</artifactId>
</dependency>

<!-- Spring Dependencies -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
</dependency>

<dependency>
<groupId>com.github.xiaoymin</groupId>
Expand Down
11 changes: 6 additions & 5 deletions reactive-spring-cloud-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@

<!-- Scoped Dependencies Management -->
<dependencies>
<dependency>
<groupId>com.jmsoftware.maf</groupId>
<artifactId>common</artifactId>
</dependency>

<!-- Spring Boot Dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -48,6 +53,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -73,11 +79,6 @@
<artifactId>spring-cloud-sleuth-zipkin</artifactId>
</dependency>

<dependency>
<groupId>com.jmsoftware.maf</groupId>
<artifactId>common</artifactId>
</dependency>

<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
Expand Down

0 comments on commit ac8222e

Please sign in to comment.