Skip to content

Commit

Permalink
Merge pull request #825 from hazendaz/master
Browse files Browse the repository at this point in the history
[ITs] Move source/target to use release instead
  • Loading branch information
hazendaz authored Jun 9, 2024
2 parents 817babe + 032c606 commit 4cf298a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/it-tools/build-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@
<version>@compilerPluginVersion@</version>
<configuration>
<debug>false</debug>
<source>8</source>
<target>8</target>
<release>8</release>
<excludes>
<exclude>fakeAnnotations/**</exclude>
<exclude>jsr305/**</exclude>
Expand Down
3 changes: 3 additions & 0 deletions src/it/MFINDBUGS-145/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,12 @@
<url>http://maven.apache.org</url>

<properties>
<!-- These two are used due to old compiler on maven 3.6.3 GHA build -->
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>

<maven.compiler.release>8</maven.compiler.release>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
Expand Down
3 changes: 3 additions & 0 deletions src/it/check-no-missing-classes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,11 @@
<name>check-no-missing-classes</name>

<properties>
<!-- These two are used due to old compiler on maven 3.6.3 GHA build -->
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>

<maven.compiler.release>8</maven.compiler.release>
</properties>

<dependencies>
Expand Down
3 changes: 1 addition & 2 deletions src/it/common.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<debug>false</debug>
<source>8</source>
<target>8</target>
<release>8</release>
<excludes>
<exclude>*fakeAnnotations/**</exclude>
<exclude>jsr305/**</exclude>
Expand Down
3 changes: 3 additions & 0 deletions src/it/skipEmpty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,11 @@
<name>skipEmpty</name>

<properties>
<!-- These two are used due to old compiler on maven 3.6.3 GHA build -->
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>

<maven.compiler.release>8</maven.compiler.release>
</properties>

<build>
Expand Down

0 comments on commit 4cf298a

Please sign in to comment.