forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-test-jboss-eap.xml
45 lines (32 loc) · 1.13 KB
/
build-test-jboss-eap.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
<?xml version="1.0"?>
<project name="portal-test-jboss-eap" basedir="." default="test" xmlns:antelope="antlib:ise.antelope.tasks">
<import file="build-test.xml" />
<target name="run-jboss-eap">
<antcall target="clean-up-logs" />
<record action="start" name="log" />
<antcall target="run-simple-server" />
<record action="stop" name="log" />
<antcall target="evaluate-logs" />
</target>
<target name="run-selenium-jboss-eap">
<echo file="app.server.${user.name}.properties">app.server.type=jboss
app.server.jboss.version=6.1.0
app.server.jboss.dir=${app.server.parent.dir}/jboss-eap-6.1
app.server.jboss.zip.name=jboss-eap-6.1.0.zip</echo>
<if>
<not>
<isset property="build.app.server" />
</not>
<then>
<ant antfile="build-dist.xml" target="build-dist-jboss-eap" />
</then>
</if>
<antcall target="revert-test-properties" />
<antcall target="prepare-virtual-host-name-properties" />
<antcall target="start-selenium" />
<antcall target="run-jboss-eap" inheritAll="false">
<param name="test.class" value="${test.name}" />
</antcall>
<antcall target="stop-selenium" />
</target>
</project>