This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/flex-flexunit.git
commit 85b471434fe57d732c51cdbde9d95ba7fce4a183 Author: Josh Tynjala <[email protected]> AuthorDate: Mon Mar 4 09:09:45 2024 -0800 FlexUnit4AntTasks: require Java 8 because newer JDKs can no longer target Java 5 --- FlexUnit4AntTasks/build.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FlexUnit4AntTasks/build.xml b/FlexUnit4AntTasks/build.xml index 93f0160..51cb997 100644 --- a/FlexUnit4AntTasks/build.xml +++ b/FlexUnit4AntTasks/build.xml @@ -52,7 +52,7 @@ </target> <target name="compile" depends="init, thirdparty-downloads"> - <javac target="1.5" source="1.5" fork="true" memoryMaximumSize="256m" srcdir="${src.loc}" failonerror="yes" verbose="false" nowarn="true" destdir="${bin.loc}"> + <javac target="1.8" source="1.8" fork="true" memoryMaximumSize="256m" srcdir="${src.loc}" failonerror="yes" verbose="false" nowarn="true" destdir="${bin.loc}"> <classpath> <fileset dir="${lib.loc}"> <include name="**/*.jar" />
