forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-test-jonas.xml
43 lines (34 loc) · 1017 Bytes
/
build-test-jonas.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
<?xml version="1.0"?>
<project basedir="." default="test" name="portal-test-jonas" xmlns:antelope="antlib:ise.antelope.tasks">
<import file="build-test.xml" />
<target name="run-jonas">
<antcall target="run-simple-server" />
</target>
<target name="run-selenium-jonas">
<app-server-properties-update>
app.server.type=jonas
</app-server-properties-update>
<if>
<not>
<isset property="build.app.server" />
</not>
<then>
<ant antfile="build-dist.xml" target="build-dist-jonas" />
</then>
</if>
<copy
file="${app.server.jonas.bin.dir}/jonas"
tofile="${app.server.jonas.bin.dir}/jonas.sh"
/>
<chmod perm="a+x">
<fileset dir="${app.server.jonas.bin.dir}">
<include name="*.sh" />
</fileset>
</chmod>
<antcall target="record-test-generated-properties" />
<antcall target="prepare-virtual-host-name-properties" />
<antcall inheritAll="false" target="run-jonas">
<param name="test.class" value="${test.class}" />
</antcall>
</target>
</project>