-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.xml
30 lines (25 loc) · 1 KB
/
build.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
<?xml version="1.0"?>
<!DOCTYPE project>
<project name="time-tracking-portlet" basedir="." default="deploy">
<import file="../build-common-portlet.xml" />
<target name="build-services">
<antcall target="build-service-activities" />
<antcall target="build-service-dayoffs" />
<antcall target="build-service-timesheet" />
</target>
<target name="build-service-activities">
<antcall target="build-service">
<param name="service.input.file" value="${basedir}/docroot/WEB-INF/src/com/liferay/timetracking/activities/service.xml" />
</antcall>
</target>
<target name="build-service-dayoffs">
<antcall target="build-service">
<param name="service.input.file" value="${basedir}/docroot/WEB-INF/src/com/liferay/timetracking/dayoffs/service.xml" />
</antcall>
</target>
<target name="build-service-timesheet">
<antcall target="build-service">
<param name="service.input.file" value="${basedir}/docroot/WEB-INF/src/com/liferay/timetracking/timesheet/service.xml" />
</antcall>
</target>
</project>