Skip to main content
summaryrefslogtreecommitdiffstats
blob: da01fa6380a40094365112ce20d228d8fcb6cd84 (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
<?xml version="1.0" encoding="UTF-8"?>
<cspecExtension xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:bc="http://www.eclipse.org/buckminster/Common-1.0" xmlns="http://www.eclipse.org/buckminster/CSpec-1.0">
	
	<dependencies>
		<!-- Place your Dependencies here -->
	</dependencies>
	
	<generators>
		<!-- Place your Generators here -->
	</generators>
	
	<artifacts>
		<!-- Place your Artifacts here -->
	</artifacts>
	
	<actions>
		<public name="build.javadoc" actor="ant">
			<actorProperties>
				<property key="buildFile" value="javadoc/build.xml"/>
			</actorProperties>
			<prerequisites>
			</prerequisites>
			<products>
				<public name="javadoc.output" base="javadoc/"/>
			</products>
		</public>
	</actions>
	
	<groups>
		<!-- Place your Groups here -->
	</groups>
	
	<alterDependencies>
		<!-- Place your Dependency alterations here -->
	</alterDependencies>
	
	<alterArtifacts>
		<!-- Place your Artifact alterations here -->
	</alterArtifacts>
	
	<alterActions>
		<!-- Place your Action alterations here -->
	</alterActions>
	
	<alterGroups>
		<!-- Place your Group alterations here -->
	</alterGroups>
	
</cspecExtension>

Back to the top