Browse Source

⬆️ Upgrading Spring Boot dependencies from 2.0.5.RELEASE to 2.1.0.RELEASE.

pull/1/head
Yangkai.Shen 5 years ago
parent
commit
c2ba71795c
19 changed files with 67 additions and 66 deletions
  1. +3
    -2
      pom.xml
  2. +2
    -2
      spring-boot-demo-actuator/pom.xml
  3. +2
    -2
      spring-boot-demo-admin-client/pom.xml
  4. +2
    -2
      spring-boot-demo-admin-server/pom.xml
  5. +2
    -2
      spring-boot-demo-elasticsearch/pom.xml
  6. +2
    -2
      spring-boot-demo-exception-handler/pom.xml
  7. +2
    -2
      spring-boot-demo-helloworld/pom.xml
  8. +2
    -2
      spring-boot-demo-log-aop/pom.xml
  9. +2
    -2
      spring-boot-demo-logback/pom.xml
  10. +2
    -2
      spring-boot-demo-neo4j/pom.xml
  11. +2
    -2
      spring-boot-demo-orm-jdbctemplate/pom.xml
  12. +2
    -2
      spring-boot-demo-orm-jpa/pom.xml
  13. +2
    -2
      spring-boot-demo-properties/pom.xml
  14. +2
    -2
      spring-boot-demo-template-beetl/pom.xml
  15. +2
    -2
      spring-boot-demo-template-enjoy/pom.xml
  16. +2
    -2
      spring-boot-demo-template-freemarker/pom.xml
  17. +2
    -2
      spring-boot-demo-template-thymeleaf/pom.xml
  18. +2
    -2
      spring-boot-demo-upload/pom.xml
  19. +30
    -30
      spring-boot-demo-war/pom.xml

+ 3
- 2
pom.xml View File

@@ -6,7 +6,7 @@

<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<modules>
<module>spring-boot-demo-helloworld</module>
<module>spring-boot-demo-properties</module>
@@ -22,6 +22,7 @@
<module>spring-boot-demo-template-enjoy</module>
<module>spring-boot-demo-orm-jdbctemplate</module>
<module>spring-boot-demo-orm-jpa</module>
<module>spring-boot-demo-email</module>
<module>spring-boot-demo-upload</module>
<module>spring-boot-demo-war</module>
<module>spring-boot-demo-elasticsearch</module>
@@ -38,7 +39,7 @@
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<spring.boot.version>2.0.5.RELEASE</spring.boot.version>
<spring.boot.version>2.1.0.RELEASE</spring.boot.version>
<mysql.version>8.0.12</mysql.version>
<hutool.version>4.1.19</hutool.version>
<user.agent.version>1.20</user.agent.version>


+ 2
- 2
spring-boot-demo-actuator/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-actuator</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-actuator</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-admin-client/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-admin-client</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-admin-client</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-admin-server/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-admin-server</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-admin-server</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-elasticsearch/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-elasticsearch</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-elasticsearch</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-exception-handler/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-exception-handler</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-exception-handler</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-helloworld/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-helloworld</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-helloworld</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-log-aop/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-log-aop</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-log-aop</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-logback/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-logback</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-logback</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-neo4j/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-neo4j</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-neo4j</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-orm-jdbctemplate/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-orm-jdbctemplate</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-orm-jdbctemplate</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-orm-jpa/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-orm-jpa</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-orm-jpa</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-properties/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-properties</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-properties</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-template-beetl/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-template-beetl</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-template-beetl</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-template-enjoy/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-template-enjoy</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-template-enjoy</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-template-freemarker/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-template-freemarker</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-template-freemarker</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-template-thymeleaf/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-template-thymeleaf</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-template-thymeleaf</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 2
- 2
spring-boot-demo-upload/pom.xml View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-upload</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-upload</name>
@@ -13,7 +13,7 @@
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>


+ 30
- 30
spring-boot-demo-war/pom.xml View File

@@ -1,27 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-war</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<!-- 若需要打成 war 包,则需要将打包方式改成 war -->
<packaging>war</packaging>

<name>spring-boot-demo-war</name>
<description>Demo project for Spring Boot</description>
<name>spring-boot-demo-war</name>
<description>Demo project for Spring Boot</description>

<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>

<dependencies>
<dependency>
@@ -36,21 +36,21 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>spring-boot-demo-war</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>spring-boot-demo-war</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

Loading…
Cancel
Save