|
|
|
@ -7,12 +7,12 @@
|
|
|
|
|
<parent> |
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
|
|
|
<version>2.6.14</version> |
|
|
|
|
<version>3.3.2</version> |
|
|
|
|
</parent> |
|
|
|
|
|
|
|
|
|
<groupId>com.javaguns.guns</groupId> |
|
|
|
|
<artifactId>guns</artifactId> |
|
|
|
|
<version>8.1.9</version> |
|
|
|
|
<version>8.3.0</version> |
|
|
|
|
|
|
|
|
|
<name>guns</name> |
|
|
|
|
<description>Guns主项目</description> |
|
|
|
@ -22,9 +22,9 @@
|
|
|
|
|
<properties> |
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
|
|
|
<java.version>1.8</java.version> |
|
|
|
|
<java.version>17</java.version> |
|
|
|
|
<mysql-connector-java.version>8.0.33</mysql-connector-java.version> |
|
|
|
|
<roses.kernel.version>8.1.9</roses.kernel.version> |
|
|
|
|
<roses.kernel.version>8.3.0</roses.kernel.version> |
|
|
|
|
<flyway.version>7.1.1</flyway.version> |
|
|
|
|
</properties> |
|
|
|
|
|
|
|
|
@ -80,8 +80,6 @@
|
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
<configuration> |
|
|
|
|
<!-- 如果没有该项配置,则devtools不会起作用,即应用不会restart --> |
|
|
|
|
<fork>true</fork> |
|
|
|
|
<excludes> |
|
|
|
|
<exclude> |
|
|
|
|
<groupId>org.projectlombok</groupId> |
|
|
|
@ -93,21 +91,25 @@
|
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
|
|
<version>3.7.0</version> |
|
|
|
|
<version>3.13.0</version> |
|
|
|
|
<configuration> |
|
|
|
|
<source>1.8</source> |
|
|
|
|
<target>1.8</target> |
|
|
|
|
<release>17</release> |
|
|
|
|
<source>17</source> |
|
|
|
|
<target>17</target> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-source-plugin</artifactId> |
|
|
|
|
<version>3.2.1</version> |
|
|
|
|
<version>3.3.1</version> |
|
|
|
|
<configuration> |
|
|
|
|
<attach>true</attach> |
|
|
|
|
</configuration> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<phase>package</phase> |
|
|
|
|
<id>attach-sources</id> |
|
|
|
|
<goals> |
|
|
|
|
<goal>jar-no-fork</goal> |
|
|
|
|
<goal>jar</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|