forked from google/gdata-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalytics.xml
More file actions
32 lines (25 loc) · 1.29 KB
/
Copy pathanalytics.xml
File metadata and controls
32 lines (25 loc) · 1.29 KB
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
<project name="analytics" default="build.analytics" basedir=".">
<!-- Path containing analytics.xml -->
<dirname property="build_dir" file="${ant.file.analytics}"/>
<import file="${build_dir}/core.xml"/>
<!-- ===================================================================== -->
<!-- Build GData Analytics library. -->
<!-- ===================================================================== -->
<property name="gdata-analytics.jar"
value="${build.jars}/gdata-analytics-${analytics.spec.version}.jar"/>
<target name="build.analytics" depends="build.core.client">
<antcall target="template.build.service">
<param name="template.service.name" value="analytics"/>
<param name="template.service.version" value="${analytics.spec.version}"/>
<param name="template.service.includes" value="**/analytics/**"/>
<param name="template.service.excludes" value="none"/>
<param name="template.service.classpath" value="build.service.core.classpath"/>
<param name="template.service.name" value="analytics"/>
</antcall>
</target>
<target name="clean.analytics">
<antcall target="template.clean.service">
<param name="template.service.name" value="analytics"/>
</antcall>
</target>
</project>