forked from openseadragon/site-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
30 lines (24 loc) · 974 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- Version: $Id: build.xml 495 2011-07-07 20:14:37Z chth $ -->
<project name="openseadragon/site-build">
<tstamp/>
<description>
Build file for compiling a static web pages for
http://openseadragon.github.io/
</description>
<!-- YOU CAN OVERRIDE PROPERTIES PER YOUR NEED IN local.properties -->
<property file="local.properties" />
<!-- BASIC PROJECT PROPERTIES TO HELP TRACK VERSION -->
<property file="build.properties" />
<target name='doc'>
<echo>| Generating Public API Documentation </echo>
<java jar="jsdoc/jsrun.jar"
fork="true">
<arg value="jsdoc/app/run.js"/>
<arg value="built-openseadragon/openseadragon/openseadragon.js"/>
<arg value="--template=jsdoc/openseadragon"/>
<arg value="--directory=${BUILD}/docs"/>
<arg value="--verbose"/>
</java>
</target>
</project>