forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-test-themes.xml
31 lines (24 loc) · 1.08 KB
/
build-test-themes.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
<?xml version="1.0"?>
<project name="portal-test-themes" basedir="." default="test" xmlns:antelope="antlib:ise.antelope.tasks">
<import file="build-test.xml" />
<target name="run-themes-jboss-mysql">
<antcall target="prepare-mysql" />
<exec dir="${lp.plugins.dir}" executable="cmd.exe">
<arg line="/c svn --username ${svn.username} --password ${svn.password} update" />
</exec>
<ant antfile="build-test-jboss.xml" target="run-selenium-jboss">
<property name="test.name" value="ThemesTestSuite" />
<property name="theme.plugins.includes" value="08-gulona-theme,liferay-jedi-theme" />
</ant>
</target>
<target name="run-themes-tomcat-mysql">
<antcall target="prepare-mysql" />
<exec dir="${lp.plugins.dir}" executable="cmd.exe">
<arg line="/c svn --username ${svn.username} --password ${svn.password} update" />
</exec>
<ant antfile="build-test-tomcat.xml" target="run-selenium-tomcat">
<property name="test.name" value="ThemesTestSuite" />
<property name="theme.plugins.includes" value="08-gulona-theme,liferay-jedi-theme" />
</ant>
</target>
</project>