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
|
<project name="spreadsheet" default="build.spreadsheet" basedir=".">
<!-- Path containing core.xml -->
<dirname property="build_dir" file="${ant.file.spreadsheet}"/>
<import file="${build_dir}/core.xml"/>
<!-- ===================================================================== -->
<!-- Build GData Spreadsheet library. -->
<!-- ===================================================================== -->
<property name="gdata-spreadsheet.jar"
value="${build.jars}/gdata-spreadsheet-${spreadsheet.spec.version}.jar"/>
<target name="build.spreadsheet" depends="core.build.core.client">
<antcall target="template.build.service">
<param name="template.service.name" value="spreadsheet"/>
<param name="template.service.version" value="${spreadsheet.spec.version}"/>
<param name="template.service.includes" value="**/spreadsheet/**"/>
<param name="template.service.excludes" value="none"/>
<param name="template.service.classpath" value="build.service.core.classpath"/>
<param name="template.service.name" value="spreadsheet"/>
</antcall>
</target>
<target name="clean.spreadsheet">
<antcall target="template.clean.service">
<param name="template.service.name" value="spreadsheet"/>
</antcall>
</target>
</project>
|