-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.xml
117 lines (101 loc) · 3.08 KB
/
build.xml
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0"?>
<project name="hybris_scripts" default="all" basedir=".">
<property name="dir_hybris_bin" value="${basedir}/hybris/bin" />
<property name="dir_hybris_tmp" value="${basedir}/hybris/temp" />
<property name="dir_platform" value="${dir_hybris_bin}/platform" />
<import file="${basedir}/qa/build_qa.xml"/>
<!-- Delegated targets -->
<target name="all" description="executes all tests except manualtests and performancetest">
<ant
dir="${dir_platform}"
target="all"
inheritAll="false"/>
</target>
<target name="alltests" description="executes all tests except manualtests and performancetest">
<ant
dir="${dir_platform}"
target="alltests"
inheritAll="false"/>
</target>
<target name="allarecotests" description="executes all tests of the Areco deployment extensions">
<ant
dir="${dir_platform}"
target="alltests"
inheritAll="false">
<property name="testclasses.packages" value="org.areco.*"/>
</ant>
</target>
<target name="build" description="Builds all extensions">
<ant
dir="${dir_platform}"
target="build"
inheritAll="false"/>
</target>
<target name="clean" description="Cleans platform and all extensions"
depends="qa_clean">
<ant
dir="${dir_platform}"
target="clean"
inheritAll="false"/>
</target>
<target name="initialize" description="Runs an initialization of the specified tenant. Syntax: ant initialize [-Dtenant].">
<ant
dir="${dir_platform}"
target="initialize"
inheritAll="false"/>
</target>
<target name="runDeploymentScripts" description="Runs all pending deployment scripts without requiring an update running system">
<ant
dir="${dir_platform}"
target="runDeploymentScripts"
inheritAll="false"/>
</target>
<target name="updatesystem" description="Performs an update system on master tenant">
<ant
dir="${dir_platform}"
target="updatesystem"
inheritAll="false"/>
</target>
<target name="yunit" description="Runs the unit and integration tests (deprecated)">
<ant
dir="${dir_platform}"
target="yunit"
inheritAll="false"/>
</target>
<target name="yunitinit" description="Initializes JUnit tenant">
<ant
dir="${dir_platform}"
target="yunitinit"
inheritAll="false"/>
</target>
<target name="yunitupdate" description="Updates JUnit tenant">
<ant
dir="${dir_platform}"
target="yunitupdate"
inheritAll="false"/>
</target>
<target name="reinstall_addons" description="Re-install all the addons that were installed in the target storefront specified.">
<ant
dir="${dir_platform}"
target="reinstall_addons"
inheritAll="false"/>
</target>
<target name="addonclean" description="Clean addons">
<ant
dir="${dir_platform}"
target="addonclean"
inheritAll="false"/>
</target>
<target name="addoninstall" description="Install addon">
<ant
dir="${dir_platform}"
target="addoninstall"
inheritAll="false"/>
</target>
<target name="addonuninstall" description="Uninstall addon">
<ant
dir="${dir_platform}"
target="addonuninstall"
inheritAll="false"/>
</target>
</project>