-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild-final.xml
More file actions
50 lines (29 loc) · 1.5 KB
/
build-final.xml
File metadata and controls
50 lines (29 loc) · 1.5 KB
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
<?xml version="1.0"?>
<!-- ===================================================================
NATO Interoperability Standards and Profiles (NISP)
Configuration file for final draft under NOSWG silence procedure
All output will be placed in the build.final/ directory
========================================================================
See the file build.xml for additional information
$Id$
-->
<project name="NISP (Final DRAFT under NOSWG silence procedure)" default="web" basedir=".">
<property name="build.dir" value="${basedir}/build.final"/>
<!-- =================================================================== -->
<!-- Publication parameters (DON'T MODIFY ANY OF THESE) -->
<!-- =================================================================== -->
<property name="nisp.lifecycle.stage" value="final"/>
<property name="nisp.lifecycle.postfix" value="-final"/>
<!-- =================================================================== -->
<!-- Targets -->
<!-- =================================================================== -->
<target name="web" description="* Create website archive (FINAL)">
<ant target="web"/>
</target>
<target name="pdf-only" description="* Create a zip containing only PDF files (FINAL)">
<ant target="pdf-only"/>
</target>
<target name="clean" description="* Clean all the generated files">
<ant target="clean-build"/>
</target>
</project>