Skip to content

Commit f118f1b

Browse files
authored
Merge pull request #29
Fix: really downgrade Java compliance for all projects to 17
2 parents 8ce2ee1 + f606291 commit f118f1b

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

pom.xml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -172,15 +172,6 @@
172172
<groupId>org.apache.maven.plugins</groupId>
173173
<artifactId>maven-compiler-plugin</artifactId>
174174
<version>3.14.0</version>
175-
<configuration>
176-
<source>17</source>
177-
<target>17</target>
178-
<release>17</release>
179-
<compilerArgs>
180-
<arg>-Xlint:all</arg>
181-
<arg>-Werror</arg>
182-
</compilerArgs>
183-
</configuration>
184175
</plugin>
185176
<plugin>
186177
<groupId>org.apache.maven.plugins</groupId>
@@ -298,6 +289,19 @@
298289
</execution>
299290
</executions>
300291
</plugin>
292+
<plugin>
293+
<groupId>org.apache.maven.plugins</groupId>
294+
<artifactId>maven-compiler-plugin</artifactId>
295+
<configuration>
296+
<source>17</source>
297+
<target>17</target>
298+
<release>17</release>
299+
<compilerArgs>
300+
<arg>-Xlint:all</arg>
301+
<arg>-Werror</arg>
302+
</compilerArgs>
303+
</configuration>
304+
</plugin>
301305
<plugin>
302306
<!-- prevent deployment of the parent pom, intentionally not inherited by submodules -->
303307
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)