From: <ker...@us...> - 2024-02-18 13:50:56
|
Revision: 25708 http://sourceforge.net/p/jedit/svn/25708 Author: kerik-sf Date: 2024-02-18 13:50:55 +0000 (Sun, 18 Feb 2024) Log Message: ----------- pjo/ant copy ivy donwnloaded libs before view; remove splash Modified Paths: -------------- pjo/trunk/ant/build.xml Modified: pjo/trunk/ant/build.xml =================================================================== --- pjo/trunk/ant/build.xml 2024-02-18 13:50:09 UTC (rev 25707) +++ pjo/trunk/ant/build.xml 2024-02-18 13:50:55 UTC (rev 25708) @@ -447,9 +447,15 @@ <sequential> <property name="jedit.install.dir" value="${jedit.version.@{pluginJeditVersion}.install.dir}" /> <property name="jedit.settings.dir" value="${jedit.version.@{pluginJeditVersion}.settings.dir}" /> + <copy todir="${jedit.settings.dir}/jars"> + <fileset dir="@{pluginDownloadDir}/build/lib" + includes="*.jar" /> + </copy> <java fork="true" jar="${jedit.install.dir}/jedit.jar"> - <jvmarg value="-Xmx192M"/> + <jvmarg value="-Xmx192M" /> + <jvmarg value="-splash:dummy.git" /> <arg value="-noserver"/> + <arg value="-nosplash"/> <arg value="-settings=${jedit.settings.dir}"/> </java> </sequential> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |