Commit 2cb54fb0 authored by 李健华's avatar 李健华

Merge branch 'feature/upgrade-lombok-maven-20220719' into 'master'

更新 lombok 和 maven compiler plugin

See merge request !81
parents 73250bec aeb446a3
......@@ -230,7 +230,8 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.2</version>
<version>1.18.22</version>
<scope>provided</scope>
</dependency>
<dependency>
......@@ -393,6 +394,19 @@
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<compilerArgs>
<arg>-Xlint:unchecked</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment