【8.3.0】升级maven编译插件

master
stylefeng 2024-08-03 17:22:53 +08:00
parent 509ec178ea
commit 187512646b
1 changed files with 6 additions and 5 deletions

11
pom.xml
View File

@ -292,22 +292,23 @@
<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.0.1</version>
<version>3.3.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>