forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build-test-tomcat-db2.xml
24 lines (19 loc) · 959 Bytes
/
build-test-tomcat-db2.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
<?xml version="1.0"?>
<project basedir="." default="test" name="portal-test-tomcat-db2" xmlns:antelope="antlib:ise.antelope.tasks">
<import file="build-test-local.xml" />
<import file="build-test-tomcat.xml" />
<target name="run-selenium-tomcat-db2">
<antcall target="record-test-generated-properties" />
<antcall inheritAll="false" target="start-docker-database-db2">
<param name="skip.copy.optional.jars" value="true" />
<param name="skip.prepare.portal.ext.properties" value="true" />
<param name="skip.property.cleanup" value="true" />
<param name="skip.rebuild.database" value="true" />
</antcall>
<antcall inheritAll="false" target="run-selenium-tomcat">
<param name="test.jdbc.drivers.url" value="http://mirrors.lax.liferay.com/files.liferay.com/private/jdbc" />
<param name="test.class" value="${test.class}" />
</antcall>
<antcall inheritAll="false" target="clean-up-database-properties" />
</target>
</project>