-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
84 lines (65 loc) · 3.38 KB
/
build.xml
File metadata and controls
84 lines (65 loc) · 3.38 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
<project name="MicrobiomeWebsite" basedir=".">
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooo Dependencies oooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<import file="${projectsDir}/EbrcWebSvcCommon/build.xml" />
<import file="${projectsDir}/MicrobiomeModel/build.xml" />
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooo Installation oooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<target name="MicrobiomeWebsite-Installation" depends="EbrcWebSvcCommon-Installation,
MicrobiomeModel-Installation,
MicrobiomeWebsite/Model-Installation,
MicrobiomeWebsite/View-Installation,
MicrobiomeWebsite/Site-Installation">
<ant target="defaultProjectInstall">
<property name="project" value="MicrobiomeWebsite" />
</ant>
</target>
<!-- ooooooooooooooooooooooo Install Components ooooooooooooooooooooooo -->
<target name="MicrobiomeWebsite/Model-Installation">
<ant target="defaultComponentInstall">
<property name="project" value="MicrobiomeWebsite" />
<property name="component" value="Model" />
</ant>
</target>
<target name="MicrobiomeWebsite/Site-Installation">
<ant target="defaultComponentInstall">
<property name="project" value="MicrobiomeWebsite" />
<property name="component" value="Site" />
</ant>
</target>
<target name="MicrobiomeWebsite/View-Installation">
<ant target="defaultComponentInstall">
<property name="project" value="MicrobiomeWebsite" />
<property name="component" value="View" />
</ant>
</target>
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooo Web Installation oooooooooooooooooooooooo -->
<!-- oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo -->
<target name="MicrobiomeWebsite-WebInstallation" depends="EbrcWebSvcCommon-WebInstallation,
MicrobiomeWebsite-Installation,
MicrobiomeWebsite/View-WebInstallation,
MicrobiomeWebsite/Site-WebInstallation"/>
<target name="MicrobiomeWebsite/Site-WebInstallation">
<ant target="defaultWebComponentInstall">
<property name="project" value="MicrobiomeWebsite" />
<property name="component" value="Site" />
</ant>
<ant target="installWebAssets">
<property name="project" value="MicrobiomeWebsite" />
<property name="sitePackageName" value="mbio-site"/>
</ant>
</target>
<target name="MicrobiomeWebsite/View-WebInstallation">
<ant target="defaultComponentInstall">
<property name="project" value="MicrobiomeWebsite" />
<property name="component" value="View" />
</ant>
<ant target="defaultWebComponentInstall">
<property name="project" value="MicrobiomeWebsite" />
<property name="component" value="View" />
</ant>
</target>
</project>