Skip to content

Commit

Permalink
perf($muscle-and-fitness-server): update dependencies
Browse files Browse the repository at this point in the history
[INFO] The following dependencies in Dependencies have newer versions:
[INFO]   cn.hutool:hutool-all .................................. 5.3.4 -> 5.5.2
[INFO]   com.alibaba:druid .................................... 1.1.22 -> 1.2.4
[INFO]   com.baomidou:mybatis-plus-boot-starter ................ 3.3.1 -> 3.4.1
[INFO]   com.github.xiaoymin:knife4j-micro-spring-boot-starter ...
[INFO]                                                           2.0.2 -> 3.0.2
[INFO]   com.google.guava:guava .......................... 29.0-jre -> 30.0-jre
[INFO]   de.codecentric:spring-boot-admin-starter-client ....... 2.2.2 -> 2.3.1
  • Loading branch information
johnnymillergh committed Dec 14, 2020
1 parent 80a086f commit e67a840
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 18 deletions.
6 changes: 3 additions & 3 deletions api-portal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>${spring-boot-admin.version}</version>
<version>${spring-boot-admin-starter-client.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
Expand Down Expand Up @@ -125,7 +125,7 @@
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.3.1</version>
<version>${mybatis-plus-boot-starter.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
Expand All @@ -135,7 +135,7 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.22</version>
<version>${druid.version}</version>
</dependency>

<dependency>
Expand Down
6 changes: 3 additions & 3 deletions auth-center/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>${spring-boot-admin.version}</version>
<version>${spring-boot-admin-starter-client.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
Expand Down Expand Up @@ -117,7 +117,7 @@
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.3.1</version>
<version>${mybatis-plus-boot-starter.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
Expand All @@ -127,7 +127,7 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.22</version>
<version>${druid.version}</version>
</dependency>

<dependency>
Expand Down
6 changes: 3 additions & 3 deletions exercise-mis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>${spring-boot-admin.version}</version>
<version>${spring-boot-admin-starter-client.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
Expand All @@ -109,7 +109,7 @@
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.3.1</version>
<version>${mybatis-plus-boot-starter.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
Expand All @@ -119,7 +119,7 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.22</version>
<version>${druid.version}</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion gateway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>${spring-boot-admin.version}</version>
<version>${spring-boot-admin-starter-client.version}</version>
</dependency>

<dependency>
Expand Down
6 changes: 3 additions & 3 deletions muscle-mis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>${spring-boot-admin.version}</version>
<version>${spring-boot-admin-starter-client.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
Expand All @@ -109,7 +109,7 @@
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.3.1</version>
<version>${mybatis-plus-boot-starter.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
Expand All @@ -119,7 +119,7 @@
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.22</version>
<version>${druid.version}</version>
</dependency>
</dependencies>
</project>
12 changes: 8 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@
<java.version>11</java.version>
<spring-cloud.version>Hoxton.SR4</spring-cloud.version>
<spring-content.version>1.0.0.M5</spring-content.version>
<spring-boot-admin.version>2.2.2</spring-boot-admin.version>
<knife4j.version>2.0.2</knife4j.version>
<spring-boot-admin-starter-client.version>2.3.1</spring-boot-admin-starter-client.version>
<druid.version>1.2.4</druid.version>
<mybatis-plus-boot-starter.version>3.4.1</mybatis-plus-boot-starter.version>
<hutool-all.version>5.5.2</hutool-all.version>
<guava.version>30.0-jre</guava.version>
<knife4j.version>3.0.2</knife4j.version>
</properties>

<!-- The modules (sometimes called subprojects) to build as a part of this project. -->
Expand Down Expand Up @@ -272,12 +276,12 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>29.0-jre</version>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.3.4</version>
<version>${hutool-all.version}</version>
</dependency>

<!-- Brings the popular ruby faker gem to Java https://github.com/DiUS/java-faker -->
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-server</artifactId>
<version>${spring-boot-admin.version}</version>
<version>${spring-boot-admin-starter-client.version}</version>
</dependency>

<dependency>
Expand Down

0 comments on commit e67a840

Please sign in to comment.