From: khartlage <khartlage> Date: Sun, 6 Jun 2004 18:49:46 +0000 (+0000) Subject: new build.xml X-Git-Url: http://git.phpeclipse.com new build.xml --- diff --git a/archive/net.sourceforge.phpeclipse.jtidy/build.xml b/archive/net.sourceforge.phpeclipse.jtidy/build.xml index cb7ff1b..5431575 100644 --- a/archive/net.sourceforge.phpeclipse.jtidy/build.xml +++ b/archive/net.sourceforge.phpeclipse.jtidy/build.xml @@ -2,20 +2,28 @@ <project name="net.sourceforge.phpeclipse.tidy" default="build.jars" basedir="."> <property name="bootclasspath" value=""/> - <property name="ws" value="win32"/> - <property name="os" value="win32"/> - <property name="arch" value="x86"/> + <property name="basews" value="${ws}"/> + <property name="baseos" value="${os}"/> + <property name="basearch" value="${arch}"/> + <property name="basenl" value="${nl}"/> <property name="javacFailOnError" value="false"/> <property name="javacDebugInfo" value="on"/> <property name="javacVerbose" value="true"/> + <property name="javacSource" value="1.3"/> + <property name="javacTarget" value="1.2"/> + <property name="compilerArg" value=""/> <target name="init" depends="properties"> - <property name="plugin" value="net.sourceforge.phpeclipse.tidy"/> - <property name="version.suffix" value="_1.0.3"/> - <property name="full.name" value="${plugin}${version.suffix}"/> + <condition property="pluginTemp" value="${buildTempFolder}/plugins"> + <isset property="buildTempFolder"/> + </condition> + <property name="pluginTemp" value="${basedir}"/> + <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.jtidy"> + <isset property="buildTempFolder"/> + </condition> + <property name="build.result.folder" value="${basedir}"/> <property name="temp.folder" value="${basedir}/temp.folder"/> <property name="plugin.destination" value="${basedir}"/> - <property name="build.result.folder" value="${basedir}"/> </target> <target name="properties" if="eclipse.running"> @@ -29,36 +37,72 @@ <antcall target="gather.bin.parts"> <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> - <zip zipfile="${plugin.destination}/${full.name}.jar" basedir="${temp.folder}/${full.name}" filesonly="false" update="no"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.tidy_1.1.0.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.tidy_1.1.0" filesonly="false" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/jtidy.jar" todir="${destination.temp.folder}/${full.name}"/> - </target> - <target name="jtidy.jar" depends="init" unless="jtidy.jar" description="Create jar: jtidy.jar."> - <property name="destdir" value="${temp.folder}/jtidy.jar.bin"/> <delete dir="${temp.folder}/jtidy.jar.bin"/> <mkdir dir="${temp.folder}/jtidy.jar.bin"/> <!-- compile the source code --> - <javac destdir="${temp.folder}/jtidy.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" classpath="../../plugins/org.eclipse.core.boot_2.1.1/bin;../../plugins/org.eclipse.core.boot_2.1.1/boot.jar;../../plugins/org.eclipse.core.runtime_2.1.1/bin;../../plugins/org.eclipse.core.runtime_2.1.1/runtime.jar;../../plugins/org.apache.xerces_4.0.13/bin;../../plugins/org.apache.xerces_4.0.13/xmlParserAPIs.jar;../../plugins/org.apache.xerces_4.0.13/xercesImpl.jar;../../plugins/org.eclipse.core.resources_2.1.1/bin;../../plugins/org.eclipse.core.resources_2.1.1/resources.jar;../../plugins/org.eclipse.core.resources.win32_2.1.0/resources.jar;../../plugins/org.eclipse.ui_2.1.1/bin;../../plugins/org.eclipse.ui_2.1.1/ui.jar;../../plugins/org.eclipse.update.core_2.1.0/bin;../../plugins/org.eclipse.update.core_2.1.0/updatecore.jar;../../plugins/org.eclipse.update.core.win32_2.1.0/updatecore.jar;../../plugins/org.eclipse.help_2.1.1/bin;../../plugins/org.eclipse.help_2.1.1/help.jar;../../plugins/org.apache.lucene_1.2.1/bin;../../plugins/org.apache.lucene_1.2.1/parser.jar;../../plugins/org.apache.lucene_1.2.1/lucene-1.2.jar;../../plugins/org.eclipse.help.appserver_2.1.0/bin;../../plugins/org.eclipse.help.appserver_2.1.0/appserver.jar;../../plugins/org.eclipse.swt_2.1.1/bin;../../plugins/org.eclipse.swt_2.1.1/ws/${ws}/swt.jar;../../plugins/org.eclipse.swt.win32_2.1.1/ws/${ws}/swt.jar;../../plugins/org.eclipse.text_2.1.0/bin;../../plugins/org.eclipse.text_2.1.0/text.jar;../../plugins/org.eclipse.jface_2.1.1/bin;../../plugins/org.eclipse.jface_2.1.1/jface.jar;../../plugins/org.eclipse.jface.text_2.1.0/bin;../../plugins/org.eclipse.jface.text_2.1.0/jfacetext.jar;../../plugins/org.eclipse.ui.views_2.1.0/bin;../../plugins/org.eclipse.ui.views_2.1.0/views.jar;../../plugins/org.eclipse.ui.workbench_2.1.1/bin;../../plugins/org.eclipse.ui.workbench_2.1.1/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/bin;../../plugins/org.eclipse.ui.win32_2.1.0/workbenchwin32.jar;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/bin;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/texteditor.jar;../../plugins/org.eclipse.ui.editors_2.1.0/bin;../../plugins/org.eclipse.ui.editors_2.1.0/editors.jar"> - <src path="src/"/> - </javac> - <!-- copy necessary resources --> - <copy todir="${temp.folder}/jtidy.jar.bin"> - <fileset dir="src/" excludes="**/*.java"/> + <javac destdir="${temp.folder}/jtidy.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}" > + <compilerarg line="${compilerArg}"/> + <classpath> + <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.ide_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/workbenchwin32.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/> + <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/> + <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/> + <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.core.expressions_3.0.0/expressions.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.views_3.0.0/views.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core.win32_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.ui_3.0.0/updateui.jar"/> + <pathelement path="../../plugins/org.eclipse.help.base_3.0.0/helpbase.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/parser.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar"/> + <pathelement path="../../plugins/org.eclipse.help.appserver_3.0.0/appserver.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.forms_3.0.0/forms.jar"/> + <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/> + <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.editors_3.0.0/editors.jar"/> + <pathelement path="../../plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar"/> + </classpath> + <src path="src/" /> + </javac> + <!-- Copy necessary resources --> + <copy todir="${temp.folder}/jtidy.jar.bin" failonerror="true"> + <fileset dir="src/" excludes="**/*.java" /> </copy> <mkdir dir="${build.result.folder}"/> <jar jarfile="${build.result.folder}/jtidy.jar" basedir="${temp.folder}/jtidy.jar.bin"/> <delete dir="${temp.folder}/jtidy.jar.bin"/> </target> - <target name="jtidysrc.zip" depends="init" unless="jtidy.jar"> + <target name="jtidysrc.zip" depends="init" unless="jtidysrc.zip"> <mkdir dir="${build.result.folder}"/> - <zip zipfile="${build.result.folder}/jtidysrc.zip" filesonly="false" update="no"> - <fileset dir="src/" includes="**/*.java"/> + <zip zipfile="${build.result.folder}/jtidysrc.zip" filesonly="false" whenempty="skip" update="false"> + <fileset dir="src/" includes="**/*.java" /> </zip> </target> @@ -72,29 +116,33 @@ <antcall target="jtidysrc.zip"/> </target> - <target name="build.zips" depends="init"> - </target> + <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.tidy_1.1.0"/> + </target> + + <target name="build.zips" depends="init"> + </target> <target name="gather.sources" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/jtidysrc.zip" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.tidy_1.1.0"/> + <copy file="${build.result.folder}/jtidysrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.tidy_1.1.0" failonerror="false"/> </target> <target name="gather.logs" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${temp.folder}/jtidy.jar.bin.log" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.tidy_1.1.0"/> + <copy file="${temp.folder}/jtidy.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.tidy_1.1.0" failonerror="false"/> </target> <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.tidy of all the zips, jars and logs created."> <delete file="${build.result.folder}/jtidy.jar"/> <delete file="${build.result.folder}/jtidysrc.zip"/> - <delete file="${plugin.destination}/${full.name}.jar"/> - <delete file="${plugin.destination}/${full.name}.zip"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.tidy_1.1.0.jar"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.tidy_1.1.0.zip"/> <delete dir="${temp.folder}"/> </target> - <target name="refresh" depends="init" if="eclipse.running"> - <eclipse.convertPath fileSystemPath="D:\eclipse\workspace\net.sourceforge.phpeclipse.jtidy\" property="resourcePath"/> + <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder."> + <eclipse.convertPath fileSystemPath="C:/eclipse3m9/workspace/net.sourceforge.phpeclipse.jtidy" property="resourcePath"/> <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/> </target> @@ -110,13 +158,10 @@ <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> <delete> - <fileset dir="${temp.folder}" includes="**/*.bin.log"/> + <fileset dir="${temp.folder}" includes="**/*.bin.log" /> </delete> - <antcall target="zip.folder"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.tidy_1.1.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="zip.folder" depends="init"> - <zip zipfile="${plugin.destination}/${full.name}.zip" basedir="${temp.folder}" filesonly="true" update="no" excludes="**/*.bin.log"/> - </target> </project> diff --git a/archive/net.sourceforge.phpeclipse.jtidy/dev.properties b/archive/net.sourceforge.phpeclipse.jtidy/dev.properties new file mode 100644 index 0000000..a2555cd --- /dev/null +++ b/archive/net.sourceforge.phpeclipse.jtidy/dev.properties @@ -0,0 +1,10 @@ +# +#Sun Jun 06 20:46:44 CEST 2004 +net.sourceforge.phpeclipse.tests=bin +net.sourceforge.phpeclipse.debug.ui=bin +net.sourceforge.phpeclipse=bin +net.sourceforge.phpeclipse.phphelp=bin +net.sourceforge.phpeclipse.quantum.sql=bin +net.sourceforge.phpeclipse.tidy=bin +net.sourceforge.phpeclipse.debug.core=bin +net.sourceforge.phpeclipse.launching=bin diff --git a/archive/net.sourceforge.phpeclipse.quantum.sql/build.xml b/archive/net.sourceforge.phpeclipse.quantum.sql/build.xml new file mode 100644 index 0000000..c55c530 --- /dev/null +++ b/archive/net.sourceforge.phpeclipse.quantum.sql/build.xml @@ -0,0 +1,173 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project name="net.sourceforge.phpeclipse.quantum.sql" default="build.jars" basedir="."> + + <property name="bootclasspath" value=""/> + <property name="basews" value="${ws}"/> + <property name="baseos" value="${os}"/> + <property name="basearch" value="${arch}"/> + <property name="basenl" value="${nl}"/> + <property name="javacFailOnError" value="false"/> + <property name="javacDebugInfo" value="on"/> + <property name="javacVerbose" value="true"/> + <property name="javacSource" value="1.3"/> + <property name="javacTarget" value="1.2"/> + <property name="compilerArg" value=""/> + + <target name="init" depends="properties"> + <condition property="pluginTemp" value="${buildTempFolder}/plugins"> + <isset property="buildTempFolder"/> + </condition> + <property name="pluginTemp" value="${basedir}"/> + <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.quantum.sql"> + <isset property="buildTempFolder"/> + </condition> + <property name="build.result.folder" value="${basedir}"/> + <property name="temp.folder" value="${basedir}/temp.folder"/> + <property name="plugin.destination" value="${basedir}"/> + </target> + + <target name="properties" if="eclipse.running"> + <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/> + </target> + + <target name="build.update.jar" depends="init" description="Build the plug-in: net.sourceforge.phpeclipse.quantum.sql for an update site."> + <delete dir="${temp.folder}"/> + <mkdir dir="${temp.folder}"/> + <antcall target="build.jars"/> + <antcall target="gather.bin.parts"> + <param name="destination.temp.folder" value="${temp.folder}/"/> + </antcall> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.3.0.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0" filesonly="false" whenempty="skip" update="false"/> + <delete dir="${temp.folder}"/> + </target> + + <target name="quantum.jar" depends="init" unless="quantum.jar" description="Create jar: quantum.jar."> + <delete dir="${temp.folder}/quantum.jar.bin"/> + <mkdir dir="${temp.folder}/quantum.jar.bin"/> + <!-- compile the source code --> + <javac destdir="${temp.folder}/quantum.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}" > + <compilerarg line="${compilerArg}"/> + <classpath> + <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.ide_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/workbenchwin32.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/> + <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/> + <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/> + <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.core.expressions_3.0.0/expressions.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.views_3.0.0/views.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core.win32_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.ui_3.0.0/updateui.jar"/> + <pathelement path="../../plugins/org.eclipse.help.base_3.0.0/helpbase.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/parser.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar"/> + <pathelement path="../../plugins/org.eclipse.help.appserver_3.0.0/appserver.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.forms_3.0.0/forms.jar"/> + <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/> + <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.editors_3.0.0/editors.jar"/> + <pathelement path="../../plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar"/> + </classpath> + <src path="src/" /> + </javac> + <!-- Copy necessary resources --> + <copy todir="${temp.folder}/quantum.jar.bin" failonerror="true"> + <fileset dir="src/" excludes="**/*.java" /> + </copy> + <mkdir dir="${build.result.folder}"/> + <jar jarfile="${build.result.folder}/quantum.jar" basedir="${temp.folder}/quantum.jar.bin"/> + <delete dir="${temp.folder}/quantum.jar.bin"/> + </target> + + <target name="quantumsrc.zip" depends="init" unless="quantumsrc.zip"> + <mkdir dir="${build.result.folder}"/> + <zip zipfile="${build.result.folder}/quantumsrc.zip" filesonly="false" whenempty="skip" update="false"> + <fileset dir="src/" includes="**/*.java" /> + </zip> + </target> + + <target name="build.jars" depends="init" description="Build all the jars for the plug-in: net.sourceforge.phpeclipse.quantum.sql."> + <available property="quantum.jar" file="${build.result.folder}/quantum.jar"/> + <antcall target="quantum.jar"/> + </target> + + <target name="build.sources" depends="init"> + <available property="quantumsrc.zip" file="${build.result.folder}/quantumsrc.zip"/> + <antcall target="quantumsrc.zip"/> + </target> + + <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0"/> + <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0" failonerror="true"> + <fileset dir="${build.result.folder}" includes="quantum.jar" /> + </copy> + <copy todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0" failonerror="true"> + <fileset dir="${basedir}" includes="icons/,doc/,*.jar,plugin.xml,plugin.properties,install.txt,.classpath,.project," /> + </copy> + </target> + + <target name="build.zips" depends="init"> + </target> + + <target name="gather.sources" depends="init" if="destination.temp.folder"> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0"/> + <copy file="${build.result.folder}/quantumsrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0" failonerror="false"/> + </target> + + <target name="gather.logs" depends="init" if="destination.temp.folder"> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0"/> + <copy file="${temp.folder}/quantum.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.quantum.sql_2.3.0" failonerror="false"/> + </target> + + <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.quantum.sql of all the zips, jars and logs created."> + <delete file="${build.result.folder}/quantum.jar"/> + <delete file="${build.result.folder}/quantumsrc.zip"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.3.0.jar"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.3.0.zip"/> + <delete dir="${temp.folder}"/> + </target> + + <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder."> + <eclipse.convertPath fileSystemPath="C:/eclipse3m9/workspace/net.sourceforge.phpeclipse.quantum.sql" property="resourcePath"/> + <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/> + </target> + + <target name="zip.plugin" depends="init" description="Create a zip containing all the elements for the plug-in: net.sourceforge.phpeclipse.quantum.sql."> + <delete dir="${temp.folder}"/> + <mkdir dir="${temp.folder}"/> + <antcall target="build.jars"/> + <antcall target="build.sources"/> + <antcall target="gather.bin.parts"> + <param name="destination.temp.folder" value="${temp.folder}/"/> + </antcall> + <antcall target="gather.sources"> + <param name="destination.temp.folder" value="${temp.folder}/"/> + </antcall> + <delete> + <fileset dir="${temp.folder}" includes="**/*.bin.log" /> + </delete> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.quantum.sql_2.3.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/> + <delete dir="${temp.folder}"/> + </target> + +</project> diff --git a/archive/net.sourceforge.phpeclipse.quantum.sql/dev.properties b/archive/net.sourceforge.phpeclipse.quantum.sql/dev.properties new file mode 100644 index 0000000..6125e9f --- /dev/null +++ b/archive/net.sourceforge.phpeclipse.quantum.sql/dev.properties @@ -0,0 +1,10 @@ +# +#Sun Jun 06 20:45:50 CEST 2004 +net.sourceforge.phpeclipse.tests=bin +net.sourceforge.phpeclipse.debug.ui=bin +net.sourceforge.phpeclipse=bin +net.sourceforge.phpeclipse.phphelp=bin +net.sourceforge.phpeclipse.quantum.sql=bin +net.sourceforge.phpeclipse.tidy=bin +net.sourceforge.phpeclipse.debug.core=bin +net.sourceforge.phpeclipse.launching=bin diff --git a/net.sourceforge.phpeclipse.debug.core/build.xml b/net.sourceforge.phpeclipse.debug.core/build.xml index 217b221..70fd398 100644 --- a/net.sourceforge.phpeclipse.debug.core/build.xml +++ b/net.sourceforge.phpeclipse.debug.core/build.xml @@ -2,20 +2,28 @@ <project name="net.sourceforge.phpeclipse.debug.core" default="build.jars" basedir="."> <property name="bootclasspath" value=""/> - <property name="ws" value="win32"/> - <property name="os" value="win32"/> - <property name="arch" value="x86"/> + <property name="basews" value="${ws}"/> + <property name="baseos" value="${os}"/> + <property name="basearch" value="${arch}"/> + <property name="basenl" value="${nl}"/> <property name="javacFailOnError" value="false"/> <property name="javacDebugInfo" value="on"/> <property name="javacVerbose" value="true"/> + <property name="javacSource" value="1.3"/> + <property name="javacTarget" value="1.2"/> + <property name="compilerArg" value=""/> <target name="init" depends="properties"> - <property name="plugin" value="net.sourceforge.phpeclipse.debug.core"/> - <property name="version.suffix" value="_1.0.4"/> - <property name="full.name" value="${plugin}${version.suffix}"/> + <condition property="pluginTemp" value="${buildTempFolder}/plugins"> + <isset property="buildTempFolder"/> + </condition> + <property name="pluginTemp" value="${basedir}"/> + <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.debug.core"> + <isset property="buildTempFolder"/> + </condition> + <property name="build.result.folder" value="${basedir}"/> <property name="temp.folder" value="${basedir}/temp.folder"/> <property name="plugin.destination" value="${basedir}"/> - <property name="build.result.folder" value="${basedir}"/> </target> <target name="properties" if="eclipse.running"> @@ -29,36 +37,84 @@ <antcall target="gather.bin.parts"> <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> - <zip zipfile="${plugin.destination}/${full.name}.jar" basedir="${temp.folder}/${full.name}" filesonly="false" update="no"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.debug.core_1.1.0.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.debug.core_1.1.0" filesonly="false" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/core.jar" todir="${destination.temp.folder}/${full.name}"/> - </target> - <target name="core.jar" depends="init" unless="core.jar" description="Create jar: core.jar."> - <property name="destdir" value="${temp.folder}/core.jar.bin"/> <delete dir="${temp.folder}/core.jar.bin"/> <mkdir dir="${temp.folder}/core.jar.bin"/> <!-- compile the source code --> - <javac destdir="${temp.folder}/core.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" classpath="../../plugins/org.eclipse.core.boot_2.1.3/bin;../../plugins/org.eclipse.core.boot_2.1.3/boot.jar;../../plugins/org.eclipse.core.runtime_2.1.1/bin;../../plugins/org.eclipse.core.runtime_2.1.1/runtime.jar;../../plugins/org.apache.xerces_4.0.13/bin;../../plugins/org.apache.xerces_4.0.13/xmlParserAPIs.jar;../../plugins/org.apache.xerces_4.0.13/xercesImpl.jar;../../plugins/org.eclipse.ui_2.1.1/bin;../../plugins/org.eclipse.ui_2.1.1/ui.jar;../../plugins/org.eclipse.core.resources_2.1.1/bin;../../plugins/org.eclipse.core.resources_2.1.1/resources.jar;../../plugins/org.eclipse.core.resources.win32_2.1.0/resources.jar;../../plugins/org.eclipse.update.core_2.1.0/bin;../../plugins/org.eclipse.update.core_2.1.0/updatecore.jar;../../plugins/org.eclipse.update.core.win32_2.1.0/updatecore.jar;../../plugins/org.eclipse.help_2.1.2/bin;../../plugins/org.eclipse.help_2.1.2/help.jar;../../plugins/org.apache.lucene_1.2.1/bin;../../plugins/org.apache.lucene_1.2.1/parser.jar;../../plugins/org.apache.lucene_1.2.1/lucene-1.2.jar;../../plugins/org.eclipse.help.appserver_2.1.0/bin;../../plugins/org.eclipse.help.appserver_2.1.0/appserver.jar;../../plugins/org.eclipse.swt_2.1.3/bin;../../plugins/org.eclipse.swt_2.1.3/ws/${ws}/swt.jar;../../plugins/org.eclipse.swt.win32_2.1.2/ws/${ws}/swt.jar;../../plugins/org.eclipse.text_2.1.0/bin;../../plugins/org.eclipse.text_2.1.0/text.jar;../../plugins/org.eclipse.jface_2.1.1/bin;../../plugins/org.eclipse.jface_2.1.1/jface.jar;../../plugins/org.eclipse.jface.text_2.1.0/bin;../../plugins/org.eclipse.jface.text_2.1.0/jfacetext.jar;../../plugins/org.eclipse.ui.views_2.1.0/bin;../../plugins/org.eclipse.ui.views_2.1.0/views.jar;../../plugins/org.eclipse.ui.workbench_2.1.1/bin;../../plugins/org.eclipse.ui.workbench_2.1.1/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/bin;../../plugins/org.eclipse.ui.win32_2.1.0/workbenchwin32.jar;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/bin;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/texteditor.jar;../../plugins/org.eclipse.ui.editors_2.1.0/bin;../../plugins/org.eclipse.ui.editors_2.1.0/editors.jar;../../plugins/org.eclipse.debug.core_2.1.2/bin;../../plugins/org.eclipse.debug.core_2.1.2/dtcore.jar;../../plugins/org.eclipse.debug.ui_2.1.2.1/bin;../../plugins/org.eclipse.debug.ui_2.1.2.1/dtui.jar;../../plugins/org.junit_3.8.1/bin;../../plugins/org.junit_3.8.1/junit.jar;../net.sourceforge.phpeclipse213/bin;../net.sourceforge.phpeclipse213/phpeclipse.jar;../../plugins/org.eclipse.ui.externaltools_2.1.1/bin;../../plugins/org.eclipse.ui.externaltools_2.1.1/externaltools.jar;../../plugins/org.apache.ant_1.5.3/bin;../../plugins/org.apache.ant_1.5.3/ant.jar;../../plugins/org.apache.ant_1.5.3/optional.jar;../../plugins/org.eclipse.ant.core_2.1.3/bin;../../plugins/org.eclipse.ant.core_2.1.3/antsupport.jar;../../plugins/org.eclipse.search_2.1.1/bin;../../plugins/org.eclipse.search_2.1.1/search.jar;../../plugins/org.eclipse.update.ui_2.1.2/bin;../../plugins/org.eclipse.update.ui_2.1.2/updateui.jar;../../plugins/org.eclipse.update.ui.win32_2.1.0/updateui.jar;../../plugins/org.eclipse.update.ui.win32_2.1.0/bin;../../plugins/org.eclipse.update.ui.win32_2.1.0/updateui32.jar;../../plugins/org.eclipse.update.ui.forms_2.1.0/bin;../../plugins/org.eclipse.update.ui.forms_2.1.0/forms.jar"> - <src path="src/"/> - </javac> - <!-- copy necessary resources --> - <copy todir="${temp.folder}/core.jar.bin"> - <fileset dir="src/" excludes="**/*.java"/> + <javac destdir="${temp.folder}/core.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}" > + <compilerarg line="${compilerArg}"/> + <classpath> + <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.ide_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/workbenchwin32.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/> + <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/> + <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/> + <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.core.expressions_3.0.0/expressions.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.views_3.0.0/views.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core.win32_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.ui_3.0.0/updateui.jar"/> + <pathelement path="../../plugins/org.eclipse.help.base_3.0.0/helpbase.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/parser.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar"/> + <pathelement path="../../plugins/org.eclipse.help.appserver_3.0.0/appserver.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.forms_3.0.0/forms.jar"/> + <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/> + <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.editors_3.0.0/editors.jar"/> + <pathelement path="../../plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar"/> + <pathelement path="../../plugins/org.eclipse.debug.core_3.0.0/dtcore.jar"/> + <pathelement path="../../plugins/org.eclipse.core.variables_3.0.0/variables.jar"/> + <pathelement path="../../plugins/org.eclipse.debug.ui_3.0.0/dtui.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.console_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.junit_3.8.1/junit.jar"/> + <pathelement path="../net.sourceforge.phpeclipse/bin"/> + <pathelement path="../net.sourceforge.phpeclipse/phpeclipse.jar"/> + <pathelement path="../../plugins/org.eclipse.search_3.0.0/search.jar"/> + <pathelement path="../../plugins/org.eclipse.compare_3.0.0/compare.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.externaltools_3.0.0/externaltools.jar"/> + <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/bin"/> + <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/quantum.jar"/> + </classpath> + <src path="src/" /> + </javac> + <!-- Copy necessary resources --> + <copy todir="${temp.folder}/core.jar.bin" failonerror="true"> + <fileset dir="src/" excludes="**/*.java" /> </copy> <mkdir dir="${build.result.folder}"/> <jar jarfile="${build.result.folder}/core.jar" basedir="${temp.folder}/core.jar.bin"/> <delete dir="${temp.folder}/core.jar.bin"/> </target> - <target name="coresrc.zip" depends="init" unless="core.jar"> + <target name="coresrc.zip" depends="init" unless="coresrc.zip"> <mkdir dir="${build.result.folder}"/> - <zip zipfile="${build.result.folder}/coresrc.zip" filesonly="false" update="no"> - <fileset dir="src/" includes="**/*.java"/> + <zip zipfile="${build.result.folder}/coresrc.zip" filesonly="false" whenempty="skip" update="false"> + <fileset dir="src/" includes="**/*.java" /> </zip> </target> @@ -72,29 +128,33 @@ <antcall target="coresrc.zip"/> </target> - <target name="build.zips" depends="init"> - </target> + <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.debug.core_1.1.0"/> + </target> + + <target name="build.zips" depends="init"> + </target> <target name="gather.sources" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/coresrc.zip" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.debug.core_1.1.0"/> + <copy file="${build.result.folder}/coresrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.debug.core_1.1.0" failonerror="false"/> </target> <target name="gather.logs" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${temp.folder}/core.jar.bin.log" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.debug.core_1.1.0"/> + <copy file="${temp.folder}/core.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.debug.core_1.1.0" failonerror="false"/> </target> <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.debug.core of all the zips, jars and logs created."> <delete file="${build.result.folder}/core.jar"/> <delete file="${build.result.folder}/coresrc.zip"/> - <delete file="${plugin.destination}/${full.name}.jar"/> - <delete file="${plugin.destination}/${full.name}.zip"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.debug.core_1.1.0.jar"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.debug.core_1.1.0.zip"/> <delete dir="${temp.folder}"/> </target> - <target name="refresh" depends="init" if="eclipse.running"> - <eclipse.convertPath fileSystemPath="C:\eclipse213\workspace\net.sourceforge.phpeclipse.debug.core\" property="resourcePath"/> + <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder."> + <eclipse.convertPath fileSystemPath="C:/eclipse3m9/workspace/net.sourceforge.phpeclipse.debug.core" property="resourcePath"/> <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/> </target> @@ -110,13 +170,10 @@ <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> <delete> - <fileset dir="${temp.folder}" includes="**/*.bin.log"/> + <fileset dir="${temp.folder}" includes="**/*.bin.log" /> </delete> - <antcall target="zip.folder"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.debug.core_1.1.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="zip.folder" depends="init"> - <zip zipfile="${plugin.destination}/${full.name}.zip" basedir="${temp.folder}" filesonly="true" update="no" excludes="**/*.bin.log"/> - </target> </project> diff --git a/net.sourceforge.phpeclipse.debug.core/dev.properties b/net.sourceforge.phpeclipse.debug.core/dev.properties new file mode 100644 index 0000000..4ffaf19 --- /dev/null +++ b/net.sourceforge.phpeclipse.debug.core/dev.properties @@ -0,0 +1,10 @@ +# +#Sun Jun 06 20:46:07 CEST 2004 +net.sourceforge.phpeclipse.tests=bin +net.sourceforge.phpeclipse.debug.ui=bin +net.sourceforge.phpeclipse=bin +net.sourceforge.phpeclipse.phphelp=bin +net.sourceforge.phpeclipse.quantum.sql=bin +net.sourceforge.phpeclipse.tidy=bin +net.sourceforge.phpeclipse.debug.core=bin +net.sourceforge.phpeclipse.launching=bin diff --git a/net.sourceforge.phpeclipse.debug.ui/build.xml b/net.sourceforge.phpeclipse.debug.ui/build.xml index 8bafe8b..fcf59c2 100644 --- a/net.sourceforge.phpeclipse.debug.ui/build.xml +++ b/net.sourceforge.phpeclipse.debug.ui/build.xml @@ -2,20 +2,28 @@ <project name="net.sourceforge.phpeclipse.debug.ui" default="build.jars" basedir="."> <property name="bootclasspath" value=""/> - <property name="ws" value="win32"/> - <property name="os" value="win32"/> - <property name="arch" value="x86"/> + <property name="basews" value="${ws}"/> + <property name="baseos" value="${os}"/> + <property name="basearch" value="${arch}"/> + <property name="basenl" value="${nl}"/> <property name="javacFailOnError" value="false"/> <property name="javacDebugInfo" value="on"/> <property name="javacVerbose" value="true"/> + <property name="javacSource" value="1.3"/> + <property name="javacTarget" value="1.2"/> + <property name="compilerArg" value=""/> <target name="init" depends="properties"> - <property name="plugin" value="net.sourceforge.phpeclipse.debug.ui"/> - <property name="version.suffix" value="_1.0.4"/> - <property name="full.name" value="${plugin}${version.suffix}"/> + <condition property="pluginTemp" value="${buildTempFolder}/plugins"> + <isset property="buildTempFolder"/> + </condition> + <property name="pluginTemp" value="${basedir}"/> + <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.debug.ui"> + <isset property="buildTempFolder"/> + </condition> + <property name="build.result.folder" value="${basedir}"/> <property name="temp.folder" value="${basedir}/temp.folder"/> <property name="plugin.destination" value="${basedir}"/> - <property name="build.result.folder" value="${basedir}"/> </target> <target name="properties" if="eclipse.running"> @@ -29,36 +37,88 @@ <antcall target="gather.bin.parts"> <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> - <zip zipfile="${plugin.destination}/${full.name}.jar" basedir="${temp.folder}/${full.name}" filesonly="false" update="no"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.debug.ui_1.1.0.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.debug.ui_1.1.0" filesonly="false" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/debug.jar" todir="${destination.temp.folder}/${full.name}"/> - </target> - <target name="debug.jar" depends="init" unless="debug.jar" description="Create jar: debug.jar."> - <property name="destdir" value="${temp.folder}/debug.jar.bin"/> <delete dir="${temp.folder}/debug.jar.bin"/> <mkdir dir="${temp.folder}/debug.jar.bin"/> <!-- compile the source code --> - <javac destdir="${temp.folder}/debug.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" classpath="../../plugins/org.eclipse.core.boot_2.1.3/bin;../../plugins/org.eclipse.core.boot_2.1.3/boot.jar;../../plugins/org.eclipse.core.runtime_2.1.1/bin;../../plugins/org.eclipse.core.runtime_2.1.1/runtime.jar;../../plugins/org.apache.xerces_4.0.13/bin;../../plugins/org.apache.xerces_4.0.13/xmlParserAPIs.jar;../../plugins/org.apache.xerces_4.0.13/xercesImpl.jar;../../plugins/org.eclipse.core.resources_2.1.1/bin;../../plugins/org.eclipse.core.resources_2.1.1/resources.jar;../../plugins/org.eclipse.core.resources.win32_2.1.0/resources.jar;../../plugins/org.eclipse.ui_2.1.1/bin;../../plugins/org.eclipse.ui_2.1.1/ui.jar;../../plugins/org.eclipse.update.core_2.1.0/bin;../../plugins/org.eclipse.update.core_2.1.0/updatecore.jar;../../plugins/org.eclipse.update.core.win32_2.1.0/updatecore.jar;../../plugins/org.eclipse.help_2.1.2/bin;../../plugins/org.eclipse.help_2.1.2/help.jar;../../plugins/org.apache.lucene_1.2.1/bin;../../plugins/org.apache.lucene_1.2.1/parser.jar;../../plugins/org.apache.lucene_1.2.1/lucene-1.2.jar;../../plugins/org.eclipse.help.appserver_2.1.0/bin;../../plugins/org.eclipse.help.appserver_2.1.0/appserver.jar;../../plugins/org.eclipse.swt_2.1.3/bin;../../plugins/org.eclipse.swt_2.1.3/ws/${ws}/swt.jar;../../plugins/org.eclipse.swt.win32_2.1.2/ws/${ws}/swt.jar;../../plugins/org.eclipse.text_2.1.0/bin;../../plugins/org.eclipse.text_2.1.0/text.jar;../../plugins/org.eclipse.jface_2.1.1/bin;../../plugins/org.eclipse.jface_2.1.1/jface.jar;../../plugins/org.eclipse.jface.text_2.1.0/bin;../../plugins/org.eclipse.jface.text_2.1.0/jfacetext.jar;../../plugins/org.eclipse.ui.views_2.1.0/bin;../../plugins/org.eclipse.ui.views_2.1.0/views.jar;../../plugins/org.eclipse.ui.workbench_2.1.1/bin;../../plugins/org.eclipse.ui.workbench_2.1.1/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/bin;../../plugins/org.eclipse.ui.win32_2.1.0/workbenchwin32.jar;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/bin;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/texteditor.jar;../../plugins/org.eclipse.ui.editors_2.1.0/bin;../../plugins/org.eclipse.ui.editors_2.1.0/editors.jar;../../plugins/org.eclipse.debug.core_2.1.2/bin;../../plugins/org.eclipse.debug.core_2.1.2/dtcore.jar;../../plugins/org.eclipse.debug.ui_2.1.2.1/bin;../../plugins/org.eclipse.debug.ui_2.1.2.1/dtui.jar;../net.sourceforge.phpeclipse.debug.core/bin;../net.sourceforge.phpeclipse.debug.core/core.jar;../../plugins/org.junit_3.8.1/bin;../../plugins/org.junit_3.8.1/junit.jar;../net.sourceforge.phpeclipse213/bin;../net.sourceforge.phpeclipse213/phpeclipse.jar;../../plugins/org.eclipse.ui.externaltools_2.1.1/bin;../../plugins/org.eclipse.ui.externaltools_2.1.1/externaltools.jar;../../plugins/org.apache.ant_1.5.3/bin;../../plugins/org.apache.ant_1.5.3/ant.jar;../../plugins/org.apache.ant_1.5.3/optional.jar;../../plugins/org.eclipse.ant.core_2.1.3/bin;../../plugins/org.eclipse.ant.core_2.1.3/antsupport.jar;../../plugins/org.eclipse.search_2.1.1/bin;../../plugins/org.eclipse.search_2.1.1/search.jar;../../plugins/org.eclipse.update.ui_2.1.2/bin;../../plugins/org.eclipse.update.ui_2.1.2/updateui.jar;../../plugins/org.eclipse.update.ui.win32_2.1.0/updateui.jar;../../plugins/org.eclipse.update.ui.win32_2.1.0/bin;../../plugins/org.eclipse.update.ui.win32_2.1.0/updateui32.jar;../../plugins/org.eclipse.update.ui.forms_2.1.0/bin;../../plugins/org.eclipse.update.ui.forms_2.1.0/forms.jar;../net.sourceforge.phpeclipse.launching/bin;../net.sourceforge.phpeclipse.launching/launch.jar"> - <src path="src/"/> - </javac> - <!-- copy necessary resources --> - <copy todir="${temp.folder}/debug.jar.bin"> - <fileset dir="src/" excludes="**/*.java"/> + <javac destdir="${temp.folder}/debug.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}" > + <compilerarg line="${compilerArg}"/> + <classpath> + <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.ide_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/workbenchwin32.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/> + <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/> + <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/> + <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.core.expressions_3.0.0/expressions.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.views_3.0.0/views.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core.win32_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.ui_3.0.0/updateui.jar"/> + <pathelement path="../../plugins/org.eclipse.help.base_3.0.0/helpbase.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/parser.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar"/> + <pathelement path="../../plugins/org.eclipse.help.appserver_3.0.0/appserver.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.forms_3.0.0/forms.jar"/> + <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/> + <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.editors_3.0.0/editors.jar"/> + <pathelement path="../../plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar"/> + <pathelement path="../../plugins/org.eclipse.debug.core_3.0.0/dtcore.jar"/> + <pathelement path="../../plugins/org.eclipse.core.variables_3.0.0/variables.jar"/> + <pathelement path="../../plugins/org.eclipse.debug.ui_3.0.0/dtui.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.console_3.0.0/console.jar"/> + <pathelement path="../net.sourceforge.phpeclipse.debug.core/bin"/> + <pathelement path="../net.sourceforge.phpeclipse.debug.core/core.jar"/> + <pathelement path="../../plugins/org.junit_3.8.1/junit.jar"/> + <pathelement path="../net.sourceforge.phpeclipse/bin"/> + <pathelement path="../net.sourceforge.phpeclipse/phpeclipse.jar"/> + <pathelement path="../../plugins/org.eclipse.search_3.0.0/search.jar"/> + <pathelement path="../../plugins/org.eclipse.compare_3.0.0/compare.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.externaltools_3.0.0/externaltools.jar"/> + <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/bin"/> + <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/quantum.jar"/> + <pathelement path="../net.sourceforge.phpeclipse.launching/bin"/> + <pathelement path="../net.sourceforge.phpeclipse.launching/launch.jar"/> + </classpath> + <src path="src/" /> + </javac> + <!-- Copy necessary resources --> + <copy todir="${temp.folder}/debug.jar.bin" failonerror="true"> + <fileset dir="src/" excludes="**/*.java" /> </copy> <mkdir dir="${build.result.folder}"/> <jar jarfile="${build.result.folder}/debug.jar" basedir="${temp.folder}/debug.jar.bin"/> <delete dir="${temp.folder}/debug.jar.bin"/> </target> - <target name="debugsrc.zip" depends="init" unless="debug.jar"> + <target name="debugsrc.zip" depends="init" unless="debugsrc.zip"> <mkdir dir="${build.result.folder}"/> - <zip zipfile="${build.result.folder}/debugsrc.zip" filesonly="false" update="no"> - <fileset dir="src/" includes="**/*.java"/> + <zip zipfile="${build.result.folder}/debugsrc.zip" filesonly="false" whenempty="skip" update="false"> + <fileset dir="src/" includes="**/*.java" /> </zip> </target> @@ -72,29 +132,33 @@ <antcall target="debugsrc.zip"/> </target> - <target name="build.zips" depends="init"> - </target> + <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.debug.ui_1.1.0"/> + </target> + + <target name="build.zips" depends="init"> + </target> <target name="gather.sources" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/debugsrc.zip" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.debug.ui_1.1.0"/> + <copy file="${build.result.folder}/debugsrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.debug.ui_1.1.0" failonerror="false"/> </target> <target name="gather.logs" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${temp.folder}/debug.jar.bin.log" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.debug.ui_1.1.0"/> + <copy file="${temp.folder}/debug.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.debug.ui_1.1.0" failonerror="false"/> </target> <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.debug.ui of all the zips, jars and logs created."> <delete file="${build.result.folder}/debug.jar"/> <delete file="${build.result.folder}/debugsrc.zip"/> - <delete file="${plugin.destination}/${full.name}.jar"/> - <delete file="${plugin.destination}/${full.name}.zip"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.debug.ui_1.1.0.jar"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.debug.ui_1.1.0.zip"/> <delete dir="${temp.folder}"/> </target> - <target name="refresh" depends="init" if="eclipse.running"> - <eclipse.convertPath fileSystemPath="C:\eclipse213\workspace\net.sourceforge.phpeclipse.debug.ui\" property="resourcePath"/> + <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder."> + <eclipse.convertPath fileSystemPath="C:/eclipse3m9/workspace/net.sourceforge.phpeclipse.debug.ui" property="resourcePath"/> <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/> </target> @@ -110,13 +174,10 @@ <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> <delete> - <fileset dir="${temp.folder}" includes="**/*.bin.log"/> + <fileset dir="${temp.folder}" includes="**/*.bin.log" /> </delete> - <antcall target="zip.folder"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.debug.ui_1.1.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="zip.folder" depends="init"> - <zip zipfile="${plugin.destination}/${full.name}.zip" basedir="${temp.folder}" filesonly="true" update="no" excludes="**/*.bin.log"/> - </target> </project> diff --git a/net.sourceforge.phpeclipse.debug.ui/dev.properties b/net.sourceforge.phpeclipse.debug.ui/dev.properties new file mode 100644 index 0000000..31730cb --- /dev/null +++ b/net.sourceforge.phpeclipse.debug.ui/dev.properties @@ -0,0 +1,10 @@ +# +#Sun Jun 06 20:46:34 CEST 2004 +net.sourceforge.phpeclipse.tests=bin +net.sourceforge.phpeclipse.debug.ui=bin +net.sourceforge.phpeclipse=bin +net.sourceforge.phpeclipse.phphelp=bin +net.sourceforge.phpeclipse.quantum.sql=bin +net.sourceforge.phpeclipse.tidy=bin +net.sourceforge.phpeclipse.debug.core=bin +net.sourceforge.phpeclipse.launching=bin diff --git a/net.sourceforge.phpeclipse.launching/build.xml b/net.sourceforge.phpeclipse.launching/build.xml index 25aeb09..93da445 100644 --- a/net.sourceforge.phpeclipse.launching/build.xml +++ b/net.sourceforge.phpeclipse.launching/build.xml @@ -2,20 +2,28 @@ <project name="net.sourceforge.phpeclipse.launching" default="build.jars" basedir="."> <property name="bootclasspath" value=""/> - <property name="ws" value="win32"/> - <property name="os" value="win32"/> - <property name="arch" value="x86"/> + <property name="basews" value="${ws}"/> + <property name="baseos" value="${os}"/> + <property name="basearch" value="${arch}"/> + <property name="basenl" value="${nl}"/> <property name="javacFailOnError" value="false"/> <property name="javacDebugInfo" value="on"/> <property name="javacVerbose" value="true"/> + <property name="javacSource" value="1.3"/> + <property name="javacTarget" value="1.2"/> + <property name="compilerArg" value=""/> <target name="init" depends="properties"> - <property name="plugin" value="net.sourceforge.phpeclipse.launching"/> - <property name="version.suffix" value="_1.0.4"/> - <property name="full.name" value="${plugin}${version.suffix}"/> + <condition property="pluginTemp" value="${buildTempFolder}/plugins"> + <isset property="buildTempFolder"/> + </condition> + <property name="pluginTemp" value="${basedir}"/> + <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.launching"> + <isset property="buildTempFolder"/> + </condition> + <property name="build.result.folder" value="${basedir}"/> <property name="temp.folder" value="${basedir}/temp.folder"/> <property name="plugin.destination" value="${basedir}"/> - <property name="build.result.folder" value="${basedir}"/> </target> <target name="properties" if="eclipse.running"> @@ -29,36 +37,86 @@ <antcall target="gather.bin.parts"> <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> - <zip zipfile="${plugin.destination}/${full.name}.jar" basedir="${temp.folder}/${full.name}" filesonly="false" update="no"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.launching_1.1.0.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.launching_1.1.0" filesonly="false" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/launch.jar" todir="${destination.temp.folder}/${full.name}"/> - </target> - <target name="launch.jar" depends="init" unless="launch.jar" description="Create jar: launch.jar."> - <property name="destdir" value="${temp.folder}/launch.jar.bin"/> <delete dir="${temp.folder}/launch.jar.bin"/> <mkdir dir="${temp.folder}/launch.jar.bin"/> <!-- compile the source code --> - <javac destdir="${temp.folder}/launch.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" classpath="../../plugins/org.eclipse.core.boot_2.1.3/bin;../../plugins/org.eclipse.core.boot_2.1.3/boot.jar;../../plugins/org.eclipse.core.runtime_2.1.1/bin;../../plugins/org.eclipse.core.runtime_2.1.1/runtime.jar;../../plugins/org.apache.xerces_4.0.13/bin;../../plugins/org.apache.xerces_4.0.13/xmlParserAPIs.jar;../../plugins/org.apache.xerces_4.0.13/xercesImpl.jar;../../plugins/org.eclipse.core.resources_2.1.1/bin;../../plugins/org.eclipse.core.resources_2.1.1/resources.jar;../../plugins/org.eclipse.core.resources.win32_2.1.0/resources.jar;../../plugins/org.eclipse.ui_2.1.1/bin;../../plugins/org.eclipse.ui_2.1.1/ui.jar;../../plugins/org.eclipse.update.core_2.1.0/bin;../../plugins/org.eclipse.update.core_2.1.0/updatecore.jar;../../plugins/org.eclipse.update.core.win32_2.1.0/updatecore.jar;../../plugins/org.eclipse.help_2.1.2/bin;../../plugins/org.eclipse.help_2.1.2/help.jar;../../plugins/org.apache.lucene_1.2.1/bin;../../plugins/org.apache.lucene_1.2.1/parser.jar;../../plugins/org.apache.lucene_1.2.1/lucene-1.2.jar;../../plugins/org.eclipse.help.appserver_2.1.0/bin;../../plugins/org.eclipse.help.appserver_2.1.0/appserver.jar;../../plugins/org.eclipse.swt_2.1.3/bin;../../plugins/org.eclipse.swt_2.1.3/ws/${ws}/swt.jar;../../plugins/org.eclipse.swt.win32_2.1.2/ws/${ws}/swt.jar;../../plugins/org.eclipse.text_2.1.0/bin;../../plugins/org.eclipse.text_2.1.0/text.jar;../../plugins/org.eclipse.jface_2.1.1/bin;../../plugins/org.eclipse.jface_2.1.1/jface.jar;../../plugins/org.eclipse.jface.text_2.1.0/bin;../../plugins/org.eclipse.jface.text_2.1.0/jfacetext.jar;../../plugins/org.eclipse.ui.views_2.1.0/bin;../../plugins/org.eclipse.ui.views_2.1.0/views.jar;../../plugins/org.eclipse.ui.workbench_2.1.1/bin;../../plugins/org.eclipse.ui.workbench_2.1.1/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/bin;../../plugins/org.eclipse.ui.win32_2.1.0/workbenchwin32.jar;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/bin;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/texteditor.jar;../../plugins/org.eclipse.ui.editors_2.1.0/bin;../../plugins/org.eclipse.ui.editors_2.1.0/editors.jar;../../plugins/org.eclipse.debug.core_2.1.2/bin;../../plugins/org.eclipse.debug.core_2.1.2/dtcore.jar;../../plugins/org.junit_3.8.1/bin;../../plugins/org.junit_3.8.1/junit.jar;../net.sourceforge.phpeclipse213/bin;../net.sourceforge.phpeclipse213/phpeclipse.jar;../../plugins/org.eclipse.ui.externaltools_2.1.1/bin;../../plugins/org.eclipse.ui.externaltools_2.1.1/externaltools.jar;../../plugins/org.apache.ant_1.5.3/bin;../../plugins/org.apache.ant_1.5.3/ant.jar;../../plugins/org.apache.ant_1.5.3/optional.jar;../../plugins/org.eclipse.ant.core_2.1.3/bin;../../plugins/org.eclipse.ant.core_2.1.3/antsupport.jar;../../plugins/org.eclipse.debug.ui_2.1.2.1/bin;../../plugins/org.eclipse.debug.ui_2.1.2.1/dtui.jar;../../plugins/org.eclipse.search_2.1.1/bin;../../plugins/org.eclipse.search_2.1.1/search.jar;../../plugins/org.eclipse.update.ui_2.1.2/bin;../../plugins/org.eclipse.update.ui_2.1.2/updateui.jar;../../plugins/org.eclipse.update.ui.win32_2.1.0/updateui.jar;../../plugins/org.eclipse.update.ui.win32_2.1.0/bin;../../plugins/org.eclipse.update.ui.win32_2.1.0/updateui32.jar;../../plugins/org.eclipse.update.ui.forms_2.1.0/bin;../../plugins/org.eclipse.update.ui.forms_2.1.0/forms.jar;../net.sourceforge.phpeclipse.debug.core/bin;../net.sourceforge.phpeclipse.debug.core/core.jar"> - <src path="src/"/> - </javac> - <!-- copy necessary resources --> - <copy todir="${temp.folder}/launch.jar.bin"> - <fileset dir="src/" excludes="**/*.java"/> + <javac destdir="${temp.folder}/launch.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}" > + <compilerarg line="${compilerArg}"/> + <classpath> + <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.ide_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/workbenchwin32.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/> + <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/> + <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/> + <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.core.expressions_3.0.0/expressions.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.views_3.0.0/views.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core.win32_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.ui_3.0.0/updateui.jar"/> + <pathelement path="../../plugins/org.eclipse.help.base_3.0.0/helpbase.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/parser.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar"/> + <pathelement path="../../plugins/org.eclipse.help.appserver_3.0.0/appserver.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.forms_3.0.0/forms.jar"/> + <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/> + <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.editors_3.0.0/editors.jar"/> + <pathelement path="../../plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar"/> + <pathelement path="../../plugins/org.eclipse.debug.core_3.0.0/dtcore.jar"/> + <pathelement path="../../plugins/org.eclipse.core.variables_3.0.0/variables.jar"/> + <pathelement path="../../plugins/org.junit_3.8.1/junit.jar"/> + <pathelement path="../net.sourceforge.phpeclipse/bin"/> + <pathelement path="../net.sourceforge.phpeclipse/phpeclipse.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.console_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.eclipse.search_3.0.0/search.jar"/> + <pathelement path="../../plugins/org.eclipse.debug.ui_3.0.0/dtui.jar"/> + <pathelement path="../../plugins/org.eclipse.compare_3.0.0/compare.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.externaltools_3.0.0/externaltools.jar"/> + <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/bin"/> + <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/quantum.jar"/> + <pathelement path="../net.sourceforge.phpeclipse.debug.core/bin"/> + <pathelement path="../net.sourceforge.phpeclipse.debug.core/core.jar"/> + </classpath> + <src path="src/" /> + </javac> + <!-- Copy necessary resources --> + <copy todir="${temp.folder}/launch.jar.bin" failonerror="true"> + <fileset dir="src/" excludes="**/*.java" /> </copy> <mkdir dir="${build.result.folder}"/> <jar jarfile="${build.result.folder}/launch.jar" basedir="${temp.folder}/launch.jar.bin"/> <delete dir="${temp.folder}/launch.jar.bin"/> </target> - <target name="launchsrc.zip" depends="init" unless="launch.jar"> + <target name="launchsrc.zip" depends="init" unless="launchsrc.zip"> <mkdir dir="${build.result.folder}"/> - <zip zipfile="${build.result.folder}/launchsrc.zip" filesonly="false" update="no"> - <fileset dir="src/" includes="**/*.java"/> + <zip zipfile="${build.result.folder}/launchsrc.zip" filesonly="false" whenempty="skip" update="false"> + <fileset dir="src/" includes="**/*.java" /> </zip> </target> @@ -72,29 +130,33 @@ <antcall target="launchsrc.zip"/> </target> - <target name="build.zips" depends="init"> - </target> + <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.launching_1.1.0"/> + </target> + + <target name="build.zips" depends="init"> + </target> <target name="gather.sources" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/launchsrc.zip" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.launching_1.1.0"/> + <copy file="${build.result.folder}/launchsrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.launching_1.1.0" failonerror="false"/> </target> <target name="gather.logs" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${temp.folder}/launch.jar.bin.log" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.launching_1.1.0"/> + <copy file="${temp.folder}/launch.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.launching_1.1.0" failonerror="false"/> </target> <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.launching of all the zips, jars and logs created."> <delete file="${build.result.folder}/launch.jar"/> <delete file="${build.result.folder}/launchsrc.zip"/> - <delete file="${plugin.destination}/${full.name}.jar"/> - <delete file="${plugin.destination}/${full.name}.zip"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.launching_1.1.0.jar"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.launching_1.1.0.zip"/> <delete dir="${temp.folder}"/> </target> - <target name="refresh" depends="init" if="eclipse.running"> - <eclipse.convertPath fileSystemPath="C:\eclipse213\workspace\net.sourceforge.phpeclipse.launching\" property="resourcePath"/> + <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder."> + <eclipse.convertPath fileSystemPath="C:/eclipse3m9/workspace/net.sourceforge.phpeclipse.launching" property="resourcePath"/> <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/> </target> @@ -110,13 +172,10 @@ <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> <delete> - <fileset dir="${temp.folder}" includes="**/*.bin.log"/> + <fileset dir="${temp.folder}" includes="**/*.bin.log" /> </delete> - <antcall target="zip.folder"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.launching_1.1.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="zip.folder" depends="init"> - <zip zipfile="${plugin.destination}/${full.name}.zip" basedir="${temp.folder}" filesonly="true" update="no" excludes="**/*.bin.log"/> - </target> </project> diff --git a/net.sourceforge.phpeclipse.launching/dev.properties b/net.sourceforge.phpeclipse.launching/dev.properties new file mode 100644 index 0000000..55088b3 --- /dev/null +++ b/net.sourceforge.phpeclipse.launching/dev.properties @@ -0,0 +1,10 @@ +# +#Sun Jun 06 20:47:10 CEST 2004 +net.sourceforge.phpeclipse.tests=bin +net.sourceforge.phpeclipse.debug.ui=bin +net.sourceforge.phpeclipse=bin +net.sourceforge.phpeclipse.phphelp=bin +net.sourceforge.phpeclipse.quantum.sql=bin +net.sourceforge.phpeclipse.tidy=bin +net.sourceforge.phpeclipse.debug.core=bin +net.sourceforge.phpeclipse.launching=bin diff --git a/net.sourceforge.phpeclipse.phphelp/build.xml b/net.sourceforge.phpeclipse.phphelp/build.xml index 8f6a806..7807fed 100644 --- a/net.sourceforge.phpeclipse.phphelp/build.xml +++ b/net.sourceforge.phpeclipse.phphelp/build.xml @@ -2,20 +2,28 @@ <project name="net.sourceforge.phpeclipse.phphelp" default="build.jars" basedir="."> <property name="bootclasspath" value=""/> - <property name="ws" value="win32"/> - <property name="os" value="win32"/> - <property name="arch" value="x86"/> + <property name="basews" value="${ws}"/> + <property name="baseos" value="${os}"/> + <property name="basearch" value="${arch}"/> + <property name="basenl" value="${nl}"/> <property name="javacFailOnError" value="false"/> <property name="javacDebugInfo" value="on"/> <property name="javacVerbose" value="true"/> + <property name="javacSource" value="1.3"/> + <property name="javacTarget" value="1.2"/> + <property name="compilerArg" value=""/> <target name="init" depends="properties"> - <property name="plugin" value="net.sourceforge.phpeclipse.phphelp"/> - <property name="version.suffix" value="_1.0.4"/> - <property name="full.name" value="${plugin}${version.suffix}"/> + <condition property="pluginTemp" value="${buildTempFolder}/plugins"> + <isset property="buildTempFolder"/> + </condition> + <property name="pluginTemp" value="${basedir}"/> + <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse.phphelp"> + <isset property="buildTempFolder"/> + </condition> + <property name="build.result.folder" value="${basedir}"/> <property name="temp.folder" value="${basedir}/temp.folder"/> <property name="plugin.destination" value="${basedir}"/> - <property name="build.result.folder" value="${basedir}"/> </target> <target name="properties" if="eclipse.running"> @@ -29,36 +37,83 @@ <antcall target="gather.bin.parts"> <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> - <zip zipfile="${plugin.destination}/${full.name}.jar" basedir="${temp.folder}/${full.name}" filesonly="false" update="no"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.phphelp_1.1.0.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse.phphelp_1.1.0" filesonly="false" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/phphelp.jar" todir="${destination.temp.folder}/${full.name}"/> - </target> - <target name="phphelp.jar" depends="init" unless="phphelp.jar" description="Create jar: phphelp.jar."> - <property name="destdir" value="${temp.folder}/phphelp.jar.bin"/> <delete dir="${temp.folder}/phphelp.jar.bin"/> <mkdir dir="${temp.folder}/phphelp.jar.bin"/> <!-- compile the source code --> - <javac destdir="${temp.folder}/phphelp.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" classpath="../../plugins/org.eclipse.core.boot_2.1.3/bin;../../plugins/org.eclipse.core.boot_2.1.3/boot.jar;../../plugins/org.eclipse.core.runtime_2.1.1/bin;../../plugins/org.eclipse.core.runtime_2.1.1/runtime.jar;../../plugins/org.apache.xerces_4.0.13/bin;../../plugins/org.apache.xerces_4.0.13/xmlParserAPIs.jar;../../plugins/org.apache.xerces_4.0.13/xercesImpl.jar;../../plugins/org.eclipse.core.resources_2.1.1/bin;../../plugins/org.eclipse.core.resources_2.1.1/resources.jar;../../plugins/org.eclipse.core.resources.win32_2.1.0/resources.jar;../../plugins/org.eclipse.ui_2.1.1/bin;../../plugins/org.eclipse.ui_2.1.1/ui.jar;../../plugins/org.eclipse.update.core_2.1.0/bin;../../plugins/org.eclipse.update.core_2.1.0/updatecore.jar;../../plugins/org.eclipse.update.core.win32_2.1.0/updatecore.jar;../../plugins/org.eclipse.help_2.1.2/bin;../../plugins/org.eclipse.help_2.1.2/help.jar;../../plugins/org.apache.lucene_1.2.1/bin;../../plugins/org.apache.lucene_1.2.1/parser.jar;../../plugins/org.apache.lucene_1.2.1/lucene-1.2.jar;../../plugins/org.eclipse.help.appserver_2.1.0/bin;../../plugins/org.eclipse.help.appserver_2.1.0/appserver.jar;../../plugins/org.eclipse.swt_2.1.3/bin;../../plugins/org.eclipse.swt_2.1.3/ws/${ws}/swt.jar;../../plugins/org.eclipse.swt.win32_2.1.2/ws/${ws}/swt.jar;../../plugins/org.eclipse.text_2.1.0/bin;../../plugins/org.eclipse.text_2.1.0/text.jar;../../plugins/org.eclipse.jface_2.1.1/bin;../../plugins/org.eclipse.jface_2.1.1/jface.jar;../../plugins/org.eclipse.jface.text_2.1.0/bin;../../plugins/org.eclipse.jface.text_2.1.0/jfacetext.jar;../../plugins/org.eclipse.ui.views_2.1.0/bin;../../plugins/org.eclipse.ui.views_2.1.0/views.jar;../../plugins/org.eclipse.ui.workbench_2.1.1/bin;../../plugins/org.eclipse.ui.workbench_2.1.1/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/bin;../../plugins/org.eclipse.ui.win32_2.1.0/workbenchwin32.jar;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/bin;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/texteditor.jar;../../plugins/org.eclipse.ui.editors_2.1.0/bin;../../plugins/org.eclipse.ui.editors_2.1.0/editors.jar;../net.sourceforge.phpeclipse213/bin;../net.sourceforge.phpeclipse213/phpeclipse.jar;../../plugins/org.eclipse.ui.externaltools_2.1.1/bin;../../plugins/org.eclipse.ui.externaltools_2.1.1/externaltools.jar;../../plugins/org.apache.ant_1.5.3/bin;../../plugins/org.apache.ant_1.5.3/ant.jar;../../plugins/org.apache.ant_1.5.3/optional.jar;../../plugins/org.eclipse.ant.core_2.1.3/bin;../../plugins/org.eclipse.ant.core_2.1.3/antsupport.jar;../../plugins/org.eclipse.debug.core_2.1.2/bin;../../plugins/org.eclipse.debug.core_2.1.2/dtcore.jar;../../plugins/org.eclipse.debug.ui_2.1.2.1/bin;../../plugins/org.eclipse.debug.ui_2.1.2.1/dtui.jar;../../plugins/org.eclipse.search_2.1.1/bin;../../plugins/org.eclipse.search_2.1.1/search.jar;../../plugins/org.eclipse.update.ui_2.1.2/bin;../../plugins/org.eclipse.update.ui_2.1.2/updateui.jar;../../plugins/org.eclipse.update.ui.win32_2.1.0/updateui.jar;../../plugins/org.eclipse.update.ui.win32_2.1.0/bin;../../plugins/org.eclipse.update.ui.win32_2.1.0/updateui32.jar;../../plugins/org.eclipse.update.ui.forms_2.1.0/bin;../../plugins/org.eclipse.update.ui.forms_2.1.0/forms.jar"> - <src path="src/"/> - </javac> - <!-- copy necessary resources --> - <copy todir="${temp.folder}/phphelp.jar.bin"> - <fileset dir="src/" excludes="**/*.java"/> + <javac destdir="${temp.folder}/phphelp.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}" > + <compilerarg line="${compilerArg}"/> + <classpath> + <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.ide_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/workbenchwin32.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/> + <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/> + <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/> + <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.core.expressions_3.0.0/expressions.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.views_3.0.0/views.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core.win32_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.ui_3.0.0/updateui.jar"/> + <pathelement path="../../plugins/org.eclipse.help.base_3.0.0/helpbase.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/parser.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar"/> + <pathelement path="../../plugins/org.eclipse.help.appserver_3.0.0/appserver.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.forms_3.0.0/forms.jar"/> + <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/> + <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.editors_3.0.0/editors.jar"/> + <pathelement path="../../plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar"/> + <pathelement path="../net.sourceforge.phpeclipse/bin"/> + <pathelement path="../net.sourceforge.phpeclipse/phpeclipse.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.console_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.eclipse.search_3.0.0/search.jar"/> + <pathelement path="../../plugins/org.eclipse.debug.core_3.0.0/dtcore.jar"/> + <pathelement path="../../plugins/org.eclipse.core.variables_3.0.0/variables.jar"/> + <pathelement path="../../plugins/org.eclipse.debug.ui_3.0.0/dtui.jar"/> + <pathelement path="../../plugins/org.eclipse.compare_3.0.0/compare.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.externaltools_3.0.0/externaltools.jar"/> + <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/bin"/> + <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/quantum.jar"/> + </classpath> + <src path="src/" /> + </javac> + <!-- Copy necessary resources --> + <copy todir="${temp.folder}/phphelp.jar.bin" failonerror="true"> + <fileset dir="src/" excludes="**/*.java" /> </copy> <mkdir dir="${build.result.folder}"/> <jar jarfile="${build.result.folder}/phphelp.jar" basedir="${temp.folder}/phphelp.jar.bin"/> <delete dir="${temp.folder}/phphelp.jar.bin"/> </target> - <target name="phphelpsrc.zip" depends="init" unless="phphelp.jar"> + <target name="phphelpsrc.zip" depends="init" unless="phphelpsrc.zip"> <mkdir dir="${build.result.folder}"/> - <zip zipfile="${build.result.folder}/phphelpsrc.zip" filesonly="false" update="no"> - <fileset dir="src/" includes="**/*.java"/> + <zip zipfile="${build.result.folder}/phphelpsrc.zip" filesonly="false" whenempty="skip" update="false"> + <fileset dir="src/" includes="**/*.java" /> </zip> </target> @@ -72,29 +127,33 @@ <antcall target="phphelpsrc.zip"/> </target> - <target name="build.zips" depends="init"> - </target> + <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.phphelp_1.1.0"/> + </target> + + <target name="build.zips" depends="init"> + </target> <target name="gather.sources" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/phphelpsrc.zip" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.phphelp_1.1.0"/> + <copy file="${build.result.folder}/phphelpsrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.phphelp_1.1.0" failonerror="false"/> </target> <target name="gather.logs" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${temp.folder}/phphelp.jar.bin.log" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse.phphelp_1.1.0"/> + <copy file="${temp.folder}/phphelp.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse.phphelp_1.1.0" failonerror="false"/> </target> <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse.phphelp of all the zips, jars and logs created."> <delete file="${build.result.folder}/phphelp.jar"/> <delete file="${build.result.folder}/phphelpsrc.zip"/> - <delete file="${plugin.destination}/${full.name}.jar"/> - <delete file="${plugin.destination}/${full.name}.zip"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.phphelp_1.1.0.jar"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse.phphelp_1.1.0.zip"/> <delete dir="${temp.folder}"/> </target> - <target name="refresh" depends="init" if="eclipse.running"> - <eclipse.convertPath fileSystemPath="C:\eclipse213\workspace\net.sourceforge.phpeclipse.phphelp\" property="resourcePath"/> + <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder."> + <eclipse.convertPath fileSystemPath="C:/eclipse3m9/workspace/net.sourceforge.phpeclipse.phphelp" property="resourcePath"/> <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/> </target> @@ -110,13 +169,10 @@ <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> <delete> - <fileset dir="${temp.folder}" includes="**/*.bin.log"/> + <fileset dir="${temp.folder}" includes="**/*.bin.log" /> </delete> - <antcall target="zip.folder"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse.phphelp_1.1.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="zip.folder" depends="init"> - <zip zipfile="${plugin.destination}/${full.name}.zip" basedir="${temp.folder}" filesonly="true" update="no" excludes="**/*.bin.log"/> - </target> </project> diff --git a/net.sourceforge.phpeclipse.phphelp/dev.properties b/net.sourceforge.phpeclipse.phphelp/dev.properties new file mode 100644 index 0000000..f2c0ad3 --- /dev/null +++ b/net.sourceforge.phpeclipse.phphelp/dev.properties @@ -0,0 +1,10 @@ +# +#Sun Jun 06 20:47:18 CEST 2004 +net.sourceforge.phpeclipse.tests=bin +net.sourceforge.phpeclipse.debug.ui=bin +net.sourceforge.phpeclipse=bin +net.sourceforge.phpeclipse.phphelp=bin +net.sourceforge.phpeclipse.quantum.sql=bin +net.sourceforge.phpeclipse.tidy=bin +net.sourceforge.phpeclipse.debug.core=bin +net.sourceforge.phpeclipse.launching=bin diff --git a/net.sourceforge.phpeclipse/build.xml b/net.sourceforge.phpeclipse/build.xml index 1f62e26..651e449 100644 --- a/net.sourceforge.phpeclipse/build.xml +++ b/net.sourceforge.phpeclipse/build.xml @@ -2,20 +2,28 @@ <project name="net.sourceforge.phpeclipse" default="build.jars" basedir="."> <property name="bootclasspath" value=""/> - <property name="ws" value="win32"/> - <property name="os" value="win32"/> - <property name="arch" value="x86"/> + <property name="basews" value="${ws}"/> + <property name="baseos" value="${os}"/> + <property name="basearch" value="${arch}"/> + <property name="basenl" value="${nl}"/> <property name="javacFailOnError" value="false"/> <property name="javacDebugInfo" value="on"/> <property name="javacVerbose" value="true"/> + <property name="javacSource" value="1.3"/> + <property name="javacTarget" value="1.2"/> + <property name="compilerArg" value=""/> <target name="init" depends="properties"> - <property name="plugin" value="net.sourceforge.phpeclipse"/> - <property name="version.suffix" value="_1.0.6a"/> - <property name="full.name" value="${plugin}${version.suffix}"/> + <condition property="pluginTemp" value="${buildTempFolder}/plugins"> + <isset property="buildTempFolder"/> + </condition> + <property name="pluginTemp" value="${basedir}"/> + <condition property="build.result.folder" value="${pluginTemp}/net.sourceforge.phpeclipse"> + <isset property="buildTempFolder"/> + </condition> + <property name="build.result.folder" value="${basedir}"/> <property name="temp.folder" value="${basedir}/temp.folder"/> <property name="plugin.destination" value="${basedir}"/> - <property name="build.result.folder" value="${basedir}"/> </target> <target name="properties" if="eclipse.running"> @@ -29,43 +37,81 @@ <antcall target="gather.bin.parts"> <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> - <zip zipfile="${plugin.destination}/${full.name}.jar" basedir="${temp.folder}/${full.name}" filesonly="false" update="no"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse_1.1.0.jar" basedir="${temp.folder}/net.sourceforge.phpeclipse_1.1.0" filesonly="false" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/phpeclipse.jar" todir="${destination.temp.folder}/${full.name}"/> - <copy todir="${destination.temp.folder}/${full.name}/icons"> - <fileset dir="${basedir}/icons"/> - </copy> - <copy file="${basedir}/TODO" todir="${destination.temp.folder}/${full.name}"/> - <copy file="${basedir}/install.txt" todir="${destination.temp.folder}/${full.name}"/> - <copy file="${basedir}/plugin.properties" todir="${destination.temp.folder}/${full.name}"/> - <copy file="${basedir}/plugin.xml" todir="${destination.temp.folder}/${full.name}"/> - </target> - <target name="phpeclipse.jar" depends="init" unless="phpeclipse.jar" description="Create jar: phpeclipse.jar."> - <property name="destdir" value="${temp.folder}/phpeclipse.jar.bin"/> - <delete dir="${destdir}"/> - <mkdir dir="${destdir}"/> + <delete dir="${temp.folder}/phpeclipse.jar.bin"/> + <mkdir dir="${temp.folder}/phpeclipse.jar.bin"/> <!-- compile the source code --> - <javac destdir="${destdir}" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" classpath="../../plugins/org.eclipse.core.boot_2.1.0/bin;../../plugins/org.eclipse.core.boot_2.1.0/boot.jar;../../plugins/org.eclipse.core.runtime_2.1.0/bin;../../plugins/org.eclipse.core.runtime_2.1.0/runtime.jar;../../plugins/org.apache.xerces_4.0.7/bin;../../plugins/org.apache.xerces_4.0.7/xmlParserAPIs.jar;../../plugins/org.apache.xerces_4.0.7/xercesImpl.jar;../../plugins/org.eclipse.core.resources_2.1.0/bin;../../plugins/org.eclipse.core.resources_2.1.0/resources.jar;../../plugins/org.eclipse.core.resources.win32_2.1.0/resources.jar;../../plugins/org.eclipse.ui_2.1.0/bin;../../plugins/org.eclipse.ui_2.1.0/ui.jar;../../plugins/org.eclipse.update.core_2.1.0/bin;../../plugins/org.eclipse.update.core_2.1.0/updatecore.jar;../../plugins/org.eclipse.update.core.win32_2.1.0/updatecore.jar;../../plugins/org.eclipse.help_2.1.0/bin;../../plugins/org.eclipse.help_2.1.0/help.jar;../../plugins/org.apache.lucene_1.2.1/bin;../../plugins/org.apache.lucene_1.2.1/parser.jar;../../plugins/org.apache.lucene_1.2.1/lucene-1.2.jar;../../plugins/org.eclipse.help.appserver_2.1.0/bin;../../plugins/org.eclipse.help.appserver_2.1.0/appserver.jar;../../plugins/org.eclipse.swt_2.1.0/bin;../../plugins/org.eclipse.swt_2.1.0/ws/${ws}/swt.jar;../../plugins/org.eclipse.swt.win32_2.1.0/ws/${ws}/swt.jar;../../plugins/org.eclipse.text_2.1.0/bin;../../plugins/org.eclipse.text_2.1.0/text.jar;../../plugins/org.eclipse.jface_2.1.0/bin;../../plugins/org.eclipse.jface_2.1.0/jface.jar;../../plugins/org.eclipse.jface.text_2.1.0/bin;../../plugins/org.eclipse.jface.text_2.1.0/jfacetext.jar;../../plugins/org.eclipse.ui.views_2.1.0/bin;../../plugins/org.eclipse.ui.views_2.1.0/views.jar;../../plugins/org.eclipse.ui.workbench_2.1.0/bin;../../plugins/org.eclipse.ui.workbench_2.1.0/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/workbench.jar;../../plugins/org.eclipse.ui.win32_2.1.0/bin;../../plugins/org.eclipse.ui.win32_2.1.0/workbenchwin32.jar;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/bin;../../plugins/org.eclipse.ui.workbench.texteditor_2.1.0/texteditor.jar;../../plugins/org.eclipse.ui.editors_2.1.0/bin;../../plugins/org.eclipse.ui.editors_2.1.0/editors.jar;../../plugins/org.eclipse.debug.ui_2.1.0/bin;../../plugins/org.eclipse.debug.ui_2.1.0/dtui.jar;../../plugins/org.eclipse.debug.core_2.1.0/bin;../../plugins/org.eclipse.debug.core_2.1.0/dtcore.jar;../../plugins/org.junit_3.8.1/bin;../../plugins/org.junit_3.8.1/junit.jar;../../plugins/org.eclipse.update.ui_2.1.0/bin;../../plugins/org.eclipse.update.ui_2.1.0/updateui.jar;../../plugins/org.eclipse.update.ui.win32_2.1.0/updateui.jar;../../plugins/org.eclipse.update.ui.win32_2.1.0/bin;../../plugins/org.eclipse.update.ui.win32_2.1.0/updateui32.jar;../../plugins/org.eclipse.update.ui.forms_2.1.0/bin;../../plugins/org.eclipse.update.ui.forms_2.1.0/forms.jar"> - <src path="src/"/> - </javac> - <!-- copy necessary resources --> - <copy todir="${destdir}"> - <fileset dir="src/" excludes="**/*.java"/> + <javac destdir="${temp.folder}/phpeclipse.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}" > + <compilerarg line="${compilerArg}"/> + <classpath> + <pathelement path="../../plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.core.runtime_3.0.0/runtime.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/core.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/osgi.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/resolver.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar"/> + <pathelement path="../../plugins/org.eclipse.update.configurator_3.0.0/configurator.jar"/> + <pathelement path="../../plugins/org.eclipse.ui_3.0.0/ui.jar"/> + <pathelement path="../../plugins/org.eclipse.help_3.0.0/help.jar"/> + <pathelement path="../../plugins/org.eclipse.swt_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.swt.win32_3.0.0/ws/${basews}/swt.jar"/> + <pathelement path="../../plugins/org.eclipse.jface_3.0.0/jface.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.compatibility_3.0.0/workbench.jar"/> + <pathelement path="../../plugins/org.eclipse.core.expressions_3.0.0/expressions.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.console_3.0.0/console.jar"/> + <pathelement path="../../plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar"/> + <pathelement path="../../plugins/org.eclipse.text_3.0.0/text.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources.jar"/> + <pathelement path="../../plugins/org.eclipse.core.resources.win32_3.0.0/resources-win32.jar"/> + <pathelement path="../../plugins/org.eclipse.search_3.0.0/search.jar"/> + <pathelement path="../../plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.ide_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/ide.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.win32_3.0.0/workbenchwin32.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.views_3.0.0/views.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.core.win32_3.0.0/updatecore.jar"/> + <pathelement path="../../plugins/org.eclipse.update.ui_3.0.0/updateui.jar"/> + <pathelement path="../../plugins/org.eclipse.help.base_3.0.0/helpbase.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/parser.jar"/> + <pathelement path="../../plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar"/> + <pathelement path="../../plugins/org.eclipse.help.appserver_3.0.0/appserver.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.forms_3.0.0/forms.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.editors_3.0.0/editors.jar"/> + <pathelement path="../../plugins/org.eclipse.debug.core_3.0.0/dtcore.jar"/> + <pathelement path="../../plugins/org.eclipse.core.variables_3.0.0/variables.jar"/> + <pathelement path="../../plugins/org.eclipse.debug.ui_3.0.0/dtui.jar"/> + <pathelement path="../../plugins/org.eclipse.compare_3.0.0/compare.jar"/> + <pathelement path="../../plugins/org.eclipse.ui.externaltools_3.0.0/externaltools.jar"/> + <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/bin"/> + <pathelement path="../net.sourceforge.phpeclipse.quantum.sql/quantum.jar"/> + </classpath> + <src path="src/" /> + </javac> + <!-- Copy necessary resources --> + <copy todir="${temp.folder}/phpeclipse.jar.bin" failonerror="true"> + <fileset dir="src/" excludes="**/*.java" /> </copy> <mkdir dir="${build.result.folder}"/> - <jar jarfile="${build.result.folder}/phpeclipse.jar" basedir="${destdir}"/> - <delete dir="${destdir}"/> + <jar jarfile="${build.result.folder}/phpeclipse.jar" basedir="${temp.folder}/phpeclipse.jar.bin"/> + <delete dir="${temp.folder}/phpeclipse.jar.bin"/> </target> - <target name="phpeclipsesrc.zip" depends="init" unless="phpeclipse.jar"> + <target name="phpeclipsesrc.zip" depends="init" unless="phpeclipsesrc.zip"> <mkdir dir="${build.result.folder}"/> - <zip zipfile="${build.result.folder}/phpeclipsesrc.zip" filesonly="false" update="no"> - <fileset dir="src/" includes="**/*.java"/> + <zip zipfile="${build.result.folder}/phpeclipsesrc.zip" filesonly="false" whenempty="skip" update="false"> + <fileset dir="src/" includes="**/*.java" /> </zip> </target> @@ -79,29 +125,33 @@ <antcall target="phpeclipsesrc.zip"/> </target> - <target name="build.zips" depends="init"> - </target> + <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0"/> + </target> + + <target name="build.zips" depends="init"> + </target> <target name="gather.sources" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${build.result.folder}/phpeclipsesrc.zip" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0"/> + <copy file="${build.result.folder}/phpeclipsesrc.zip" todir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0" failonerror="false"/> </target> <target name="gather.logs" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <copy file="${temp.folder}/phpeclipse.jar.bin.log" todir="${destination.temp.folder}/${full.name}"/> + <mkdir dir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0"/> + <copy file="${temp.folder}/phpeclipse.jar.bin.log" todir="${destination.temp.folder}/net.sourceforge.phpeclipse_1.1.0" failonerror="false"/> </target> <target name="clean" depends="init" description="Clean the plug-in: net.sourceforge.phpeclipse of all the zips, jars and logs created."> <delete file="${build.result.folder}/phpeclipse.jar"/> <delete file="${build.result.folder}/phpeclipsesrc.zip"/> - <delete file="${plugin.destination}/${full.name}.jar"/> - <delete file="${plugin.destination}/${full.name}.zip"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse_1.1.0.jar"/> + <delete file="${plugin.destination}/net.sourceforge.phpeclipse_1.1.0.zip"/> <delete dir="${temp.folder}"/> </target> - <target name="refresh" depends="init" if="eclipse.running"> - <eclipse.convertPath fileSystemPath="D:\eclipse_21\workspace\net.sourceforge.phpeclipse\" property="resourcePath"/> + <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder."> + <eclipse.convertPath fileSystemPath="C:/eclipse3m9/workspace/net.sourceforge.phpeclipse" property="resourcePath"/> <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/> </target> @@ -117,13 +167,10 @@ <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> <delete> - <fileset dir="${temp.folder}" includes="**/*.bin.log"/> + <fileset dir="${temp.folder}" includes="**/*.bin.log" /> </delete> - <antcall target="zip.folder"/> + <zip zipfile="${plugin.destination}/net.sourceforge.phpeclipse_1.1.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> - <target name="zip.folder" depends="init"> - <zip zipfile="${plugin.destination}/${full.name}.zip" basedir="${temp.folder}" filesonly="true" update="no" excludes="**/*.bin.log"/> - </target> </project> diff --git a/net.sourceforge.phpeclipse/dev.properties b/net.sourceforge.phpeclipse/dev.properties new file mode 100644 index 0000000..83a763a --- /dev/null +++ b/net.sourceforge.phpeclipse/dev.properties @@ -0,0 +1,10 @@ +# +#Sun Jun 06 20:45:38 CEST 2004 +net.sourceforge.phpeclipse.tests=bin +net.sourceforge.phpeclipse.debug.ui=bin +net.sourceforge.phpeclipse=bin +net.sourceforge.phpeclipse.phphelp=bin +net.sourceforge.phpeclipse.quantum.sql=bin +net.sourceforge.phpeclipse.tidy=bin +net.sourceforge.phpeclipse.debug.core=bin +net.sourceforge.phpeclipse.launching=bin