--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/imakerplugin/com.nokia.carbide.extensions.imaker/build.xml Tue Jan 12 13:17:53 2010 -0600
@@ -0,0 +1,172 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="com.nokia.carbide.extensions.imaker" default="build.update.jar" basedir=".">
+ <property file="../common.properties" />
+ <property file="build.properties" />
+
+ <target name="init">
+ <property name="feature.temp.folder" value="${basedir}/feature.temp.folder"/>
+ <property name="feature.destination" value="../${plugin.dist.dir}"/>
+ <mkdir dir="${feature.destination}"/>
+ </target>
+
+ <target name="all.plugins" depends="init">
+ <ant antfile="build.xml" dir="../com.nokia.s60tools.imaker.doc.user" target="${target}">
+ <property name="arch" value="x86"/>
+ <property name="ws" value="win32"/>
+ <property name="os" value="win32"/>
+ </ant>
+ <ant antfile="build.xml" dir="../com.nokia.s60tools.imaker" target="${target}">
+ <property name="arch" value="x86"/>
+ <property name="ws" value="win32"/>
+ <property name="os" value="win32"/>
+ </ant>
+ </target>
+ <target name="all.features" depends="init">
+ </target>
+ <target name="update.feature" depends="init">
+ </target>
+
+ <target name="all.children" depends="init,all.features,all.plugins,update.feature">
+ </target>
+
+ <target name="children" if="include.children">
+ <antcall target="all.children"/>
+ </target>
+
+ <target name="build.jars" depends="init" description="Build all the jars for the feature: com.nokia.carbide.extensions.imaker.">
+ <antcall target="all.children">
+ <param name="target" value="build.jars"/>
+ </antcall>
+ </target>
+
+ <target name="build.sources" depends="init">
+ <antcall target="all.children">
+ <param name="target" value="build.sources"/>
+ </antcall>
+ </target>
+
+ <target name="build.zips" depends="init">
+ <antcall target="all.children">
+ <param name="target" value="build.zips"/>
+ </antcall>
+ </target>
+
+ <target name="build.update.jar" depends="init" description="Build the feature jar of: com.nokia.carbide.extensions.imaker for an update site.">
+ <antcall target="all.children">
+ <param name="target" value="build.update.jar"/>
+ </antcall>
+ <property name="feature.base" value="${feature.temp.folder}"/>
+ <delete dir="${feature.temp.folder}"/>
+ <mkdir dir="${feature.temp.folder}"/>
+ <mkdir dir="${feature.temp.folder}/features/com.nokia.carbide.extensions.imaker_${plugin.version}"/>
+ <antcall target="gather.bin.parts" inheritAll="false">
+ <param name="os" value="*"/>
+ <param name="feature.base" value="${feature.temp.folder}"/>
+ <param name="updateJar.omitRootfiles" value="true"/>
+ <param name="ws" value="*"/>
+ <param name="arch" value="*"/>
+ <param name="nl" value="*"/>
+ </antcall>
+ <mkdir dir="${feature.destination}"/>
+ <jar destfile="${feature.destination}/com.nokia.carbide.extensions.imaker_${plugin.version}.jar" basedir="${feature.temp.folder}/features/com.nokia.carbide.extensions.imaker_${plugin.version}"/>
+ <!-- <delete dir="${feature.temp.folder}"/> -->
+ </target>
+
+ <target name="gather.bin.parts" depends="init" if="feature.base">
+ <mkdir dir="${feature.base}/features/com.nokia.carbide.extensions.imaker_${plugin.version}"/>
+ <antcall target="all.plugins">
+ <param name="target" value="collect.jar"/>
+ <param name="destination.temp.folder" value="${feature.base}/plugins"/>
+ </antcall>
+ <copy todir="${feature.base}/features/com.nokia.carbide.extensions.imaker_${plugin.version}" failonerror="true" overwrite="false">
+ <fileset dir="${basedir}">
+ <include name="feature.xml"/>
+ <include name="license.txt"/>
+ </fileset>
+ </copy>
+ <antcall target="rootFiles">
+ <param name="rootTarget" value="rootFiles${os}_${ws}_${arch}"/>
+ </antcall>
+ </target>
+ <target name="rootFiles" unless="updateJar.omitRootfiles">
+ <!-- <antcall target="${rootTarget}"/> -->
+ </target>
+
+ <target name="rootFileswin32_win32_x86">
+ </target>
+ <target name="rootFilesgroup_group_group">
+ <antcall target="rootFileswin32_win32_x86"/>
+ </target>
+
+ <target name="zip.distribution" depends="init" description="Create a zip containing all the plug-ins and features for the feature: com.nokia.carbide.extensions.imaker.">
+ <delete dir="${feature.temp.folder}"/>
+ <mkdir dir="${feature.temp.folder}"/>
+ <antcall target="gather.bin.parts">
+ <param name="feature.base" value="${feature.temp.folder}"/>
+ <param name="os" value="*"/>
+ <param name="arch" value="*"/>
+ <param name="ws" value="*"/>
+ <param name="nl" value="*"/>
+ <param name="include.children" value="true"/>
+ </antcall>
+ <zip destfile="${feature.destination}/com.nokia.carbide.extensions.imaker_${plugin.version}.zip" basedir="${feature.temp.folder}" filesonly="false" whenempty="skip" update="false"/>
+ <delete dir="${feature.temp.folder}"/>
+ </target>
+
+ <target name="zip.sources" depends="init">
+ <delete dir="${feature.temp.folder}"/>
+ <mkdir dir="${feature.temp.folder}"/>
+ <antcall target="all.children">
+ <param name="target" value="gather.sources"/>
+ <param name="destination.temp.folder" value="${feature.temp.folder}/plugins/null/src"/>
+ <param name="include.children" value="true"/>
+ </antcall>
+ <zip destfile="${feature.destination}/com.nokia.carbide.extensions.imaker_${plugin.version}.src.zip" basedir="${feature.temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+ <delete dir="${feature.temp.folder}"/>
+ </target>
+
+ <target name="zip.logs" depends="init">
+ <delete dir="${feature.temp.folder}"/>
+ <mkdir dir="${feature.temp.folder}"/>
+ <antcall target="all.children" inheritAll="false">
+ <param name="target" value="gather.logs"/>
+ <param name="destination.temp.folder" value="${feature.temp.folder}/plugins"/>
+ <param name="include.children" value="true"/>
+ </antcall>
+ <zip destfile="${feature.destination}/com.nokia.carbide.extensions.imaker_${plugin.version}.log.zip" basedir="${feature.temp.folder}" filesonly="true" whenempty="skip" update="false"/>
+ <delete dir="${feature.temp.folder}"/>
+ </target>
+
+ <target name="clean" depends="init" description="Clean the feature: com.nokia.carbide.extensions.imaker of all the zips, jars and logs created.">
+ <delete file="${feature.destination}/com.nokia.carbide.extensions.imaker_${plugin.version}.jar"/>
+ <delete file="${feature.destination}/com.nokia.carbide.extensions.imaker_${plugin.version}.bin.dist.zip"/>
+ <delete file="${feature.destination}/com.nokia.carbide.extensions.imaker_${plugin.version}.log.zip"/>
+ <delete file="${feature.destination}/com.nokia.carbide.extensions.imaker_${plugin.version}.src.zip"/>
+ <delete dir="${feature.temp.folder}"/>
+ <antcall target="all.children">
+ <param name="target" value="clean"/>
+ </antcall>
+ </target>
+
+ <target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
+ <eclipse.convertPath fileSystemPath="E:/workspaces/imaker/imaker_plugin/com.nokia.carbide.extensions.imaker/" property="resourcePath"/>
+ <eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
+ <antcall target="all.children">
+ <param name="target" value="refresh"/>
+ </antcall>
+ </target>
+ <target name="gather.sources">
+ <antcall target="children">
+ <param name="target" value="gather.sources"/>
+ <param name="destination.temp.folder" value="${feature.temp.folder}/plugins/null/src"/>
+ </antcall>
+ </target>
+
+ <target name="gather.logs" depends="init">
+ <mkdir dir="${feature.temp.folder}"/>
+ <antcall target="all.children" inheritAll="false">
+ <param name="target" value="gather.logs"/>
+ <param name="destination.temp.folder" value="${feature.temp.folder}/plugins"/>
+ </antcall>
+ </target>
+</project>