|
What this is
Other links
The source code<?xml version="1.0" encoding="UTF-8"?> <project name="org.eclipse.update.tests.nested.rootplugin" 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}/org.eclipse.update.tests.nested.rootplugin"> <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: org.eclipse.update.tests.nested.rootplugin 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}/org.eclipse.update.tests.nested.rootplugin_1.0.0.jar" basedir="${temp.folder}/org.eclipse.update.tests.nested.rootplugin_1.0.0" filesonly="false" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> <target name="rootplugin.jar" depends="init" unless="rootplugin.jar" description="Create jar: rootplugin.jar."> <delete dir="${temp.folder}/rootplugin.jar.bin"/> <mkdir dir="${temp.folder}/rootplugin.jar.bin"/> <!-- compile the source code --> <javac destdir="${temp.folder}/rootplugin.jar.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bootclasspath}" source="${javacSource}" target="${javacTarget}" > <compilerarg line="${compilerArg}"/> <classpath> <pathelement path="../org.eclipse.ui/bin"/> <pathelement path="../org.eclipse.ui/ui.jar"/> <pathelement path="../org.eclipse.core.runtime/bin"/> <pathelement path="../org.eclipse.core.runtime/runtime.jar"/> <pathelement path="../org.eclipse.osgi/bin"/> <pathelement path="../org.eclipse.osgi/core.jar"/> <pathelement path="../org.eclipse.osgi/console.jar"/> <pathelement path="../org.eclipse.osgi/osgi.jar"/> <pathelement path="../org.eclipse.osgi/resolver.jar"/> <pathelement path="../org.eclipse.osgi/defaultAdaptor.jar"/> <pathelement path="../org.eclipse.osgi/eclipseAdaptor.jar"/> <pathelement path="../org.eclipse.help/bin"/> <pathelement path="../org.eclipse.help/help.jar"/> <pathelement path="../org.eclipse.swt/bin"/> <pathelement path="../org.eclipse.swt/ws/${basews}/swt.jar"/> <pathelement path="../org.eclipse.swt.win32/ws/${basews}/swt.jar"/> <pathelement path="../org.eclipse.jface/bin"/> <pathelement path="../org.eclipse.jface/jface.jar"/> <pathelement path="../org.eclipse.ui.workbench/bin"/> <pathelement path="../org.eclipse.ui.workbench/compatibility.jar"/> <pathelement path="../org.eclipse.ui.workbench/workbench.jar"/> <pathelement path="../org.eclipse.ui.workbench.compatibility/compatibility.jar"/> <pathelement path="../org.eclipse.ui.workbench.compatibility/workbench.jar"/> <pathelement path="../org.eclipse.core.expressions/bin"/> <pathelement path="../org.eclipse.core.expressions/expressions.jar"/> <pathelement path="../org.eclipse.core.runtime.compatibility/bin"/> <pathelement path="../org.eclipse.core.runtime.compatibility/compatibility.jar"/> <pathelement path="../org.eclipse.update.configurator/bin"/> <pathelement path="../org.eclipse.update.configurator/configurator.jar"/> </classpath> <src path="src/" /> </javac> <!-- Copy necessary resources --> <copy todir="${temp.folder}/rootplugin.jar.bin" failonerror="true"> <fileset dir="src/" excludes="**/*.java" /> </copy> <mkdir dir="${build.result.folder}"/> <jar jarfile="${build.result.folder}/rootplugin.jar" basedir="${temp.folder}/rootplugin.jar.bin"/> <delete dir="${temp.folder}/rootplugin.jar.bin"/> </target> <target name="rootpluginsrc.zip" depends="init" unless="rootpluginsrc.zip"> <mkdir dir="${build.result.folder}"/> <zip zipfile="${build.result.folder}/rootpluginsrc.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: org.eclipse.update.tests.nested.rootplugin."> <available property="rootplugin.jar" file="${build.result.folder}/rootplugin.jar"/> <antcall target="rootplugin.jar"/> </target> <target name="build.sources" depends="init"> <available property="rootpluginsrc.zip" file="${build.result.folder}/rootpluginsrc.zip"/> <antcall target="rootpluginsrc.zip"/> </target> <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> <mkdir dir="${destination.temp.folder}/org.eclipse.update.tests.nested.rootplugin_1.0.0"/> <copy todir="${destination.temp.folder}/org.eclipse.update.tests.nested.rootplugin_1.0.0" failonerror="true"> <fileset dir="${build.result.folder}" includes="rootplugin.jar" /> </copy> <copy todir="${destination.temp.folder}/org.eclipse.update.tests.nested.rootplugin_1.0.0" failonerror="true"> <fileset dir="${basedir}" includes="plugin.xml,rootplugin.jar" /> </copy> </target> <target name="build.zips" depends="init"> </target> <target name="gather.sources" depends="init" if="destination.temp.folder"> <mkdir dir="${destination.temp.folder}/org.eclipse.update.tests.nested.rootplugin_1.0.0"/> <copy file="${build.result.folder}/rootpluginsrc.zip" todir="${destination.temp.folder}/org.eclipse.update.tests.nested.rootplugin_1.0.0" failonerror="false"/> </target> <target name="gather.logs" depends="init" if="destination.temp.folder"> <mkdir dir="${destination.temp.folder}/org.eclipse.update.tests.nested.rootplugin_1.0.0"/> <copy file="${temp.folder}/rootplugin.jar.bin.log" todir="${destination.temp.folder}/org.eclipse.update.tests.nested.rootplugin_1.0.0" failonerror="false"/> </target> <target name="clean" depends="init" description="Clean the plug-in: org.eclipse.update.tests.nested.rootplugin of all the zips, jars and logs created."> <delete file="${build.result.folder}/rootplugin.jar"/> <delete file="${build.result.folder}/rootpluginsrc.zip"/> <delete file="${plugin.destination}/org.eclipse.update.tests.nested.rootplugin_1.0.0.jar"/> <delete file="${plugin.destination}/org.eclipse.update.tests.nested.rootplugin_1.0.0.zip"/> <delete dir="${temp.folder}"/> </target> <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder."> <eclipse.convertPath fileSystemPath="d:/workspaceUpdate/plugins/org.eclipse.update.tests.nested.rootplugin" 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: org.eclipse.update.tests.nested.rootplugin."> <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}/org.eclipse.update.tests.nested.rootplugin_1.0.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> </project> |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.