File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 2222 <junit .vintage.version>5.4.1</junit .vintage.version>
2323 <logback .version>1.3.14</logback .version>
2424 <slf4j .version>2.0.12</slf4j .version>
25+
26+ <maven-compiler-plugin .version>3.11.0</maven-compiler-plugin .version>
27+ <java-compiler-source .version>1.8</java-compiler-source .version>
28+ <java-compiler-target .version>1.8</java-compiler-target .version>
29+
2530 </properties >
2631
2732 <dependencies >
8691 <plugin >
8792 <groupId >org.apache.maven.plugins</groupId >
8893 <artifactId >maven-compiler-plugin</artifactId >
94+ <version >${maven-compiler-plugin.version} </version >
8995 <configuration >
90- <source >${java.version} </source >
91- <target >${java.version} </target >
96+ <source >${java-compiler-source.version} </source >
97+ <target >${java-compiler-target.version} </target >
98+ <compilerArgs >
99+ <arg >-proc:none</arg >
100+ </compilerArgs >
92101 </configuration >
93102 </plugin >
94103 <plugin >
You can’t perform that action at this time.
0 commit comments