forked from objectify/objectify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
33 lines (24 loc) · 953 Bytes
/
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
31
32
33
<?xml version="1.0"?>
<!--
Used only to sync javadocs. Once upon a time we used ant to build this project, and this is all that remains.
-->
<project name="objectify" default="syncjavadoc" basedir="."
xmlns:artifact="antlib:org.apache.maven.artifact.ant">
<property name="name" value="${ant.project.name}" />
<property file="user.properties" />
<property file="${user.home}/build.properties" />
<property file="build.properties" />
<property name="build.debug" value="on" />
<property name="build.deprecation" value="on" />
<property name="build.dir" location="target" />
<property name="build.javadoc.dir" location="${build.dir}/apidocs" />
<property name="javadoc.dir" value="../objectify-docs/apidocs" />
<target name="clean">
<delete dir="${build.dir}" />
</target>
<target name="syncjavadoc">
<sync todir="${javadoc.dir}" includeEmptyDirs="true">
<fileset dir="${build.javadoc.dir}" />
</sync>
</target>
</project>