Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 73143ed17ca6ec0968eb15fcd7e3df5c59c4a939 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0"?>
<!--
  Copyright (c) 2017 Eike Stepper (Berlin, Germany) 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:
    Eike Stepper - initial API and implementation
-->
<project name="JavaDocLib" default="delegate">

	<!-- =========================================== -->
	<!-- THIS FILE HAS BEEN GENERATED, DO NOT CHANGE -->
	<!-- =========================================== -->

	<target name="org.eclipse.net4j.util.doc" unless="skip.org.eclipse.net4j.util.doc">
		<ant antfile="${plugins.dir}/org.eclipse.net4j.util.doc/build.xml" target="${delegate.target}" />
	</target>

	<target name="org.eclipse.net4j.doc" unless="skip.org.eclipse.net4j.doc">
		<ant antfile="${plugins.dir}/org.eclipse.net4j.doc/build.xml" target="${delegate.target}" />
	</target>

	<target name="org.eclipse.net4j.db.doc" unless="skip.org.eclipse.net4j.db.doc">
		<ant antfile="${plugins.dir}/org.eclipse.net4j.db.doc/build.xml" target="${delegate.target}" />
	</target>

	<target name="org.eclipse.emf.cdo.doc" unless="skip.org.eclipse.emf.cdo.doc">
		<ant antfile="${plugins.dir}/org.eclipse.emf.cdo.doc/build.xml" target="${delegate.target}" />
	</target>

	<target name="delegate" depends="org.eclipse.net4j.util.doc,org.eclipse.net4j.doc,org.eclipse.net4j.db.doc,org.eclipse.emf.cdo.doc" />

	<target name="toc">
		<concat destfile="${helpcenter.project}/html/toc.html">
			<path path="${releng.project}/html/tocHeader.html" />
			<path path="${plugins.dir}/org.eclipse.emf.cdo.doc/toc.html" />
			<path path="${plugins.dir}/org.eclipse.net4j.db.doc/toc.html" />
			<path path="${plugins.dir}/org.eclipse.net4j.doc/toc.html" />
			<path path="${plugins.dir}/org.eclipse.net4j.util.doc/toc.html" />
			<path path="${releng.project}/html/tocFooter.html" />
		</concat>
	</target>

</project>

Back to the top