This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
35 lines (30 loc) · 1.58 KB
/
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
34
35
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This file is part of the DITA Open Toolkit project hosted on
Sourceforge.net. See the accompanying license.txt file for
applicable licenses.-->
<!-- (c) Copyright IBM Corp. 2004, 2006 All Rights Reserved. -->
<!-- revise @PLACEHOLDER@ names and values-->
<!--
| basedir can be specified to other places base on your need.
|
| Note: input, output, and temp directories will base on the basedir if
| they are relative paths.
* -->
<project name="@PROJECT.NAME@_pdf" default="@DELIVERABLE.NAME@2pdf" basedir=".">
<!-- dita.dir should point to the toolkit's root directory -->
<property name="dita.dir"
value="${file.separator}Users${file.separator}scotmarvin${file.separator}DITA-OT-oxy"/>
<!-- if file is a relative file name, the file name will be resolved
relative to the importing file -->
<import file="${dita.dir}${file.separator}integrator.xml"/>
<target name="@DELIVERABLE.NAME@2pdf" depends="integrate">
<ant antfile="${dita.dir}${file.separator}build.xml" target="init">
<!-- please refer to the toolkit's document for supported parameters, and
specify them base on your needs -->
<property name="args.input"
value="${file.separator}Users${file.separator}scotmarvin${file.separator}Documents${file.separator}euca${file.separator}3.0${file.separator}admin_guide${file.separator}admin_guide.ditamap"/>
<property name="output.dir" value="out${file.separator}pdf"/>
<property name="transtype" value="pdf2"/>
</ant>
</target>
</project>