On Fri, 11 Sep 2020 at 18:21, Ernie Rael <[email protected]> wrote: > Still Ant. (old plugin, not updated) > > Recent maven-compiler-plugin allows "<release>8</release>"
Unless Maven has changed there(?), that doesn't compile on JDK 8 - you need to put it in a profile only enabled by JDK 9+. You probably want to update the Ant build for this instead - eg. https://ant.apache.org/manual/Tasks/javac.html release property ignored where not supported, and vice-versa. Have done this once for an RCP project, but offhand can't remember where I did so. Best wishes, Neil --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
