-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
32 lines (22 loc) · 1.13 KB
/
Copy pathbuild.xml
File metadata and controls
32 lines (22 loc) · 1.13 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
<?xml version="1.0"?>
<project name="OGAM" default="deployAll" basedir=".">
<!-- Deploy the web site -->
<target name="deployWebSite" description="Deploy the web site">
<ant antfile="website/build.xml" target="deployWebSite" inheritAll="false" />
</target>
<!-- Deploy the reporting service -->
<target name="deployReportGenerationService" description="Deploy the reporting service">
<ant antfile="service_generation_rapport/build.xml" target="deploy" inheritAll="false" />
</target>
<!-- Deploy the integration service -->
<target name="deployServiceIntegration" description="Deploy the integration service">
<ant antfile="service_integration/build.xml" target="deploy" inheritAll="false" />
</target>
<!-- Deploy the harmonization service -->
<target name="deployServiceHarmonization" description="Deploy the harmonization service">
<ant antfile="service_harmonization/build.xml" target="deploy" inheritAll="false" />
</target>
<!-- Deploy all -->
<target name="deployAll" description="Deploy all" depends="deployWebSite,deployServiceIntegration,deployReportGenerationService,deployServiceHarmonization">
</target>
</project>