This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git
commit a5683bc01a16b7be863c9eda635b23b2df100967 Author: Richard Zowalla <[email protected]> AuthorDate: Thu Mar 24 08:27:57 2022 +0100 Minor: We build with JDK 11, we cannot have 17 as target --- examples/java-modules/pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/java-modules/pom.xml b/examples/java-modules/pom.xml index 67bdbb6..b7f44f2 100644 --- a/examples/java-modules/pom.xml +++ b/examples/java-modules/pom.xml @@ -48,10 +48,10 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <version>3.8.0</version> + <version>3.8.1</version> <configuration> - <source>17</source> - <target>17</target> + <source>11</source> + <target>11</target> </configuration> </plugin> <plugin>
