Skip to main content
summaryrefslogtreecommitdiffstats
blob: 31bb8a9b952abdb06b0f4c465a75cdd1ac4e1899 (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
48
49
50
51
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="javadoc">
	
	<path id="files.classpath">
		<fileset dir="${target}/">
			<filename name="**/*.jar" />
		</fileset>
	</path>
	
    <target name="javadoc">
    	<echo message="${target}"/>
    	<echo message="${source}"/>
       	<echo message="${output}"/>
        <javadoc access="protected" additionalparam="-J-Xmx512m  -tag model:a:Model -tag generated:a:Generated -tag noreference:tcmf:DoNotReference -tag ordered:a:Ordered -tag noimplement:a:NoImplement -tag noextend:a:NoExtend -tag ThreadSafe -tag Immutable " 
        	author="false" 
        	classpathref="files.classpath" 
        	destdir="${output}" 
        	doctitle="Eclipse Communication Framework (ECF) 3.9.1" 
        	nodeprecated="false" 
        	nodeprecatedlist="false" 
        	noindex="false" 
        	nonavbar="false" 
        	notree="false" 
        	source="1.5" 
        	splitindex="true" 
        	use="true" 
        	version="true">
        	
        	<fileset dir="${source}" defaultexcludes="true">
	        	<include name="**/*.java"/>
	        	<exclude name="**/ui/**"/>
	        	<exclude name="**/smack/**"/>
	        	<exclude name="**/incubation/**"/>
	        	<exclude name="**/internal/**"/>
	        	<exclude name="**/ch/**"/>
	        	<exclude name="**/jmdns/**"/>
	        	<exclude name="**/tests/**"/>
	        	<exclude name="**/sdo/**"/>
	        	<exclude name="**/tutorial/**"/>
	        	<exclude name="**/twitter/**"/>
	        	<exclude name="**/jivesoftware/**"/>
	        	<exclude name="**/pubsub/**"/>
	        	<exclude name="**/collab/**"/>
	        	<exclude name="**/osgi/services/discovery/**"/>
	        	<exclude name="**/com/mycorp/examples/timeservice/**"/>
	        	<exclude name="**/org.eclipse.ecf.remoteservice.asyncproxy.j8/**"/>
	        	<exclude name="**/org.eclipse.ecf.remoteservices.tooling.pde/templates/**"/>
        	</fileset>
    	</javadoc>
    </target>
</project>

Back to the top