forked from VEuPathDB/ApiCommonWebService
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
96 lines (66 loc) · 3.37 KB
/
build.xml
File metadata and controls
96 lines (66 loc) · 3.37 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<project name="Installation" default="Installation" basedir=".">
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooo Dependencies oooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<import file="${projectsDir}/ApiCommonWebsite/build.xml" />
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooo Installation oooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<target name="ApiCommonWebService-Installation" depends="ApiCommonWebsite-Installation,
ApiCommonWebService-MavenInstallation,
ApiCommonWebService/WSFPlugin-Installation,
ApiCommonWebService/HighSpeedSnpSearch-Installation">
<ant target="defaultProjectInstall">
<property name="project" value="ApiCommonWebService" />
</ant>
</target>
<target name="ApiCommonWebService-MavenInstallation">
<ant target="mavenBuildProject">
<property name="project" value="ApiCommonWebService" />
</ant>
<property name="alreadyBuilt" value="true" />
</target>
<!-- ooooooooooooooooooooooo Install Components ooooooooooooooooooooooo -->
<target name="ApiCommonWebService/WSFPlugin-Installation">
<ant target="defaultComponentInstall">
<property name="project" value="ApiCommonWebService" />
<property name="component" value="WSFPlugin" />
</ant>
</target>
<target name="ApiCommonWebService/HighSpeedSnpSearch-Installation">
<ant target="defaultComponentInstall">
<property name="project" value="ApiCommonWebService" />
<property name="component" value="HighSpeedSnpSearch" />
</ant>
</target>
<target name="ApiCommonWebService/Test-Installation">
<ant target="defaultComponentInstall">
<property name="project" value="ApiCommonWebService" />
<property name="component" value="Test" />
</ant>
</target>
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooo Web Installation oooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<target name="ApiCommonWebService-WebInstallation"
depends="ApiCommonWebService-Installation">
</target>
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooo Release ooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<target name="ApiCommonWebService-Release">
<ant target="defaultProjectRelease">
<property name="cvsroot" value=":ext:cvs.sanger.ac.uk:/cvsroot/GUS" />
</ant>
</target>
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooo Distributable ooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<target name="ApiCommonWebService-Distributable">
<copy todir="${targetDir}">
<fileset dir="${projectsDir}">
<exclude name="**/CVS/*" />
</fileset>
</copy>
</target>
</project>