Skip to content

Commit

Permalink
GitHub Actions fix
Browse files Browse the repository at this point in the history
maven-compiler-plugin definition to avoid "Source option 5 is no longer supported. Use 8 or later." message

Signed-off-by: Radek Felcman <radek.felcman@oracle.com>
  • Loading branch information
rfelcman authored and lukasj committed Dec 21, 2023
1 parent 48f305b commit be5817c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions el-maven-plugin/src/test/it/allPropertiesTest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.0</version>
</plugin>
<plugin>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink-testbuild-plugin</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions el-maven-plugin/src/test/it/basicTest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.0</version>
</plugin>
<plugin>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink-testbuild-plugin</artifactId>
Expand Down

0 comments on commit be5817c

Please sign in to comment.