This repository has been archived by the owner on Aug 26, 2023. It is now read-only.
forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-test-weblogic.xml
58 lines (44 loc) · 1.85 KB
/
build-test-weblogic.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
<?xml version="1.0"?>
<project name="portal-test-weblogic" basedir="." default="test" xmlns:antelope="antlib:ise.antelope.tasks">
<import file="build-test.xml" />
<target name="run-selenium-weblogic">
<if>
<not>
<isset property="build.app.server" />
</not>
<then>
<ant antfile="build-dist.xml" target="unzip-weblogic" />
<ant target="all" />
</then>
</if>
<antcall target="revert-test-properties" />
<antcall target="prepare-selenium">
<param name="test.class" value="${test.name}" />
</antcall>
<antcall target="start-selenium" />
<antcall target="run-weblogic">
<param name="test.class" value="${test.name}" />
</antcall>
<antcall target="stop-selenium" />
</target>
<target name="run-weblogic">
<antcall target="clean-up-logs" />
<record action="start" name="log" />
<condition property="file.suffix.cmd" value=".cmd" else=".sh">
<contains string="${os.name}" substring="Windows" casesensitive="false" />
</condition>
<antcall target="run-simple-server">
<param name="simple.server.dir" value="${app.server.weblogic.dir}" />
<param name="simple.server.bin.dir" value="${app.server.weblogic.bin.dir}" />
<param name="simple.server.deploy.dir" value="${app.server.weblogic.deploy.dir}" />
<param name="simple.server.lib.global.dir" value="${app.server.weblogic.lib.global.dir}" />
<param name="simple.server.portal.dir" value="${app.server.weblogic.portal.dir}" />
<param name="simple.server.start.executable" value="../startWebLogic${file.suffix.cmd}" />
<param name="simple.server.start.executable.arg.line" value="" />
<param name="simple.server.stop.executable" value="../stopWebLogic${file.suffix.cmd}" />
<param name="simple.server.stop.executable.arg.line" value="" />
</antcall>
<record action="stop" name="log" />
<antcall target="evaluate-logs" />
</target>
</project>