From: <ker...@us...> - 2024-02-18 13:49:26
|
Revision: 25706 http://sourceforge.net/p/jedit/svn/25706 Author: kerik-sf Date: 2024-02-18 13:49:23 +0000 (Sun, 18 Feb 2024) Log Message: ----------- pjo/ant java 8 and 11 Modified Paths: -------------- pjo/trunk/ant/build.xml Modified: pjo/trunk/ant/build.xml =================================================================== --- pjo/trunk/ant/build.xml 2024-02-18 13:48:27 UTC (rev 25705) +++ pjo/trunk/ant/build.xml 2024-02-18 13:49:23 UTC (rev 25706) @@ -132,7 +132,7 @@ </and> </selector> - <target name="build" depends="java5"> + <target name="build"> <input addproperty="plugin.name" message="Plugin Name:" /> <input addproperty="plugin.version" message="Version:" /> <plugin-jedit-version pluginName="${plugin.name}" pluginVersion="${plugin.version}" /> @@ -209,6 +209,14 @@ <property name="compiler.source" value="1.6" /> <property name="compiler.target" value="1.6" /> </target> + <target name="java8"> + <property name="compiler.source" value="1.8" /> + <property name="compiler.target" value="1.8" /> + </target> + <target name="java11"> + <property name="compiler.source" value="11" /> + <property name="compiler.target" value="11" /> + </target> <target name="package"> <input addproperty="plugin.name" message="Plugin Name:" /> <input addproperty="plugin.version" message="Version:" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |