This is an automated email from the ASF dual-hosted git repository. jlmonteiro pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 9788f3d3d261dcd26dc6ed4be1e60720d74ed312 Author: Jean-Louis Monteiro <[email protected]> AuthorDate: Mon Oct 10 11:24:44 2022 +0200 Update version to use minimum Java 8 so when building under JDK 17 it does not fail --- examples/connector-ear/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/connector-ear/pom.xml b/examples/connector-ear/pom.xml index 509c07b870..cc78d80cb2 100644 --- a/examples/connector-ear/pom.xml +++ b/examples/connector-ear/pom.xml @@ -63,8 +63,8 @@ <artifactId>maven-compiler-plugin</artifactId> <configuration> <optimize>true</optimize> - <source>1.6</source> - <target>1.6</target> + <source>1.8</source> + <target>1.8</target> </configuration> </plugin> </plugins>
