File: webmastertools.xml

package info (click to toggle)
libgdata-java 1.20.0%2Bdak1-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,428 kB
  • ctags: 7,289
  • sloc: java: 33,714; xml: 605; sh: 19; makefile: 10
file content (32 lines) | stat: -rw-r--r-- 1,396 bytes parent folder | download
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="webmastertools" default="build.webmastertools" basedir=".">
  <!-- Path containing webmastertools.xml -->
  <dirname property="build_dir" file="${ant.file.webmastertools}"/>
  <import file="${build_dir}/core.xml"/>

  <!--  ===================================================================== -->
  <!--                 Build GData webmastertools library.                          -->
  <!--  ===================================================================== -->

  <property name="gdata-webmastertools.jar"
    value="${build.jars}/gdata-webmastertools-${webmastertools.spec.version}.jar"/>


  <target name="build.webmastertools" depends="core.build.core.client">
    <antcall target="template.build.service">
      <param name="template.service.name" value="webmastertools"/>
      <param name="template.service.version" value="${webmastertools.spec.version}"/>
      <param name="template.service.includes" value="**/webmastertools/**"/>
      <param name="template.service.excludes" value="none"/>
      <param name="template.service.classpath" value="build.service.core.classpath"/>
      <param name="template.service.name" value="webmastertools"/>
    </antcall>
  </target>

  <target name="clean.webmastertools">
    <antcall target="template.clean.service">
      <param name="template.service.name" value="webmastertools"/>
    </antcall>
  </target>


</project>