Skip to main content
summaryrefslogblamecommitdiffstats
blob: f0761b862254786d551744cbf5816a9cf02228dd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                         


















































                                                                                                                          
<?xml version="1.0" encoding="UTF-8"?><!--
    Copyright (c) 2009 Tasktop Technologies and others.
    All rights reserved. This program and the accompanying materials
    are made available under the terms of the Eclipse Public License v1.0
    which accompanies this distribution, and is available at
    http://www.eclipse.org/legal/epl-v10.html
   
    Contributors:
         Tasktop Technologies - initial API and implementation
 -->

<project name="org.eclipse.mylyn.help.sdk" default="all">
    <description>
            Generate Eclipse help content for the Mylyn developer guide
    </description>

	<property environment="env" />
	<property name="install" value="${basedir}/../../" />

	<target name="all">
	        <antcall target="generateJavadoc" />
	        <antcall target="convertSchemaToHtml" />
	</target>

	<target name="convertSchemaToHtml" if="eclipse.running">
	        <property name="dest" value="reference/extension-points" />
	        <record name="${basedir}/doc.cnv.txt" action="start" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.bugzilla.core/plugin.xml" destination="${dest}" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.commons.core/plugin.xml" destination="${dest}" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.context.core/plugin.xml" destination="${dest}" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.context.ui/plugin.xml" destination="${dest}" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.java.ui/plugin.xml" destination="${dest}" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.monitor.ui/plugin.xml" destination="${dest}" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.resources.ui/plugin.xml" destination="${dest}" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.tasks.bugs/plugin.xml" destination="${dest}" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.tasks.core/plugin.xml" destination="${dest}" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.tasks.ui/plugin.xml" destination="${dest}" />
	        <pde.convertSchemaToHTML manifest="../org.eclipse.mylyn.team.ui/plugin.xml" destination="${dest}" />
	        <record name="${basedir}/doc.cnv.txt" action="stop" />
	</target>

	<target name="generateJavadoc">
		<delete dir="reference/api"/>
		<mkdir dir="reference/api"/>

		<javadoc destdir="reference/api"
	           author="true"
	           version="true"
	           use="true"
	           windowtitle="Mylyn API Reference">
		    <fileset dir=".." defaultexcludes="yes">
		    	<include name="org.eclipse.mylyn*/src/org/eclipse/mylyn/**/*.java"/>
				<exclude name="org.eclipse.mylyn*.tests/**"/>
				<exclude name="org.eclipse.mylyn*examples*/**"/>
				<exclude name="org.eclipse.mylyn.monitor.usage/**"/>
				<exclude name="org.eclipse.mylyn*wikitext*/**"/>
				<exclude name="**/internal/**"/>
		    </fileset>
		</javadoc>
	</target>

</project>

Back to the top