Nice catch ________________________________ From: Harbs <[email protected]> Sent: Monday, August 17, 2026 10:15 AM To: Apache Royale Development <[email protected]> Subject: Re: (royale-asjs) branch develop updated: Set Java 8 level for example tests
Didn’t we deprecate Java 8? > On Aug 17, 2026, at 12:12 PM, [email protected] wrote: > > This is an automated email from the ASF dual-hosted git repository. > > yishayw pushed a commit to branch develop > in repository https://gitbox.apache.org/repos/asf/royale-asjs.git > > > The following commit(s) were added to refs/heads/develop by this push: > new 3d65c46c1a Set Java 8 level for example tests > 3d65c46c1a is described below > > commit 3d65c46c1aec400de5939aebdc07689e589d4e85 > Author: Yishay Weiss <[email protected]> > AuthorDate: Mon Aug 17 10:06:35 2026 +0100 > > Set Java 8 level for example tests > --- > examples/examples-integrationtests/pom.xml | 2 ++ > examples/examples-tests/pom.xml | 6 +++++- > 2 files changed, 7 insertions(+), 1 deletion(-) > > diff --git a/examples/examples-integrationtests/pom.xml > b/examples/examples-integrationtests/pom.xml > index 3f5183af3d..31cd0177d8 100644 > --- a/examples/examples-integrationtests/pom.xml > +++ b/examples/examples-integrationtests/pom.xml > @@ -34,6 +34,8 @@ > > <properties> > <tomcat.version>8.5.13</tomcat.version> > + <maven.compiler.source>8</maven.compiler.source> > + <maven.compiler.target>8</maven.compiler.target> > </properties> > > <build> > diff --git a/examples/examples-tests/pom.xml b/examples/examples-tests/pom.xml > index 02686dcb02..113abd8dce 100644 > --- a/examples/examples-tests/pom.xml > +++ b/examples/examples-tests/pom.xml > @@ -42,4 +42,8 @@ > </dependency> > </dependencies> > > -<properties /></project> > + <properties> > + <maven.compiler.source>8</maven.compiler.source> > + <maven.compiler.target>8</maven.compiler.target> > + </properties> > +</project> >
