From: <ez...@us...> - 2024-05-02 13:18:21
|
Revision: 25723 http://sourceforge.net/p/jedit/svn/25723 Author: ezust Date: 2024-05-02 13:18:18 +0000 (Thu, 02 May 2024) Log Message: ----------- Upper-Lower case and whitespace. Modified Paths: -------------- plugins/Qdoc/trunk/build.xml Modified: plugins/Qdoc/trunk/build.xml =================================================================== --- plugins/Qdoc/trunk/build.xml 2024-05-02 13:15:24 UTC (rev 25722) +++ plugins/Qdoc/trunk/build.xml 2024-05-02 13:18:18 UTC (rev 25723) @@ -1,5 +1,5 @@ <?xml version="1.0" ?> -<project name="QdocSideKick" default="dist" basedir="."> +<project name="QDocSideKick" default="dist" basedir="."> <property file="build.properties" /> <property file="../build.properties" /> <property name="compiler.source" value="11" /> @@ -6,13 +6,13 @@ <property name="compiler.target" value="11" /> <property name="compiler.userargs" value="-Xlint:unchecked -Xlint:deprecation" /> <property name="src.dir" value="src" /> - + <!-- Documentation process none: if you supply your own html file as this template does. xsltproc: if you plan on using docbook --> <property name="docs-proc.target" value="none" /> - + <!-- jEdit installation properties. --> <property name="build.support" value=".." /> <property name="install.dir" value=".." /> @@ -19,7 +19,7 @@ <property name="jedit.install.dir" value=".." /> <property name="jedit.plugins.dir" value="${install.dir}" /> <import file="${build.support}/plugin-build.xml" /> - + <!-- If you want any extra files to be included with your plugin's jar, such as custom images, you need to specify them here. --> <selector id="packageFiles"> @@ -29,7 +29,7 @@ </or> </and> </selector> - + <path id="project.class.path"> <pathelement location="${jedit.install.dir}/jedit.jar" /> <pathelement location="${install.dir}/ErrorList.jar"/> @@ -38,12 +38,12 @@ <pathelement location="${install.dir}/EclipseIcons.jar"/> <pathelement location="./build/classes"/> </path> - + <target name="build.prepare"> <mkdir dir="${build.dir}" /> </target> - + <!-- this is for local testing of individual files, note hard-coded path to test file --> <target name="run" description="Run the application." @@ -53,6 +53,6 @@ <arg file="/home/danson/src/jedit/plugins/Qdoc/test1.qdoc"/> </java> </target> - - + + </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |