-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild-release.xml
51 lines (30 loc) · 1.55 KB
/
build-release.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0"?>
<!-- ===================================================================
NATO Interoperability Standards and Profiles (NISP)
Configuration file for approved and releasable edition
All output will be placed in the build.release/ directory
========================================================================
See the file build.xml for additional information
$Id$
-->
<project name="NISP (Approved and releasable edition)" default="web" basedir=".">
<property name="build.dir" value="${basedir}/build.release"/>
<!-- =================================================================== -->
<!-- Publication parameters (DON'T MODIFY ANY OF THESE) -->
<!-- =================================================================== -->
<property name="nisp.lifecycle.stage" value="release"/>
<property name="nisp.lifecycle.postfix" value="-release"/>
<property name="nisp.draft.watermark" value="'no'"/>
<!-- =================================================================== -->
<!-- Targets -->
<!-- =================================================================== -->
<target name="web" description="* Create website archive (RELEASE)">
<ant target="web"/>
</target>
<target name="pdf-only" description="* Create a zip containing only PDF files (RELEASE)">
<ant target="pdf-only"/>
</target>
<target name="clean" description="* Clean all the generated files">
<ant target="clean-build"/>
</target>
</project>