-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
38 lines (32 loc) · 1.04 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
36
37
38
<?xml version="1.0"?>
<project name="Library-Management-System" default="build">
<target name="build" description="Compile source tree java files">
<javac includeantruntime="false" debug="true" failonerror="true">
<src path="."/>
</javac>
</target>
<target name="javadoc" description="Generate JavaDoc">
<javadoc packagenames="library.*"
sourcepath="."
excludepackagenames="com.dummy.test.doc-files.*"
defaultexcludes="yes"
destdir="docs/api"
author="true"
version="true"
use="true"
windowtitle="LMS API">
<doctitle><![CDATA[<h1>Library Management System</h1>]]></doctitle>
<bottom><![CDATA[<i>Copyright © 2021 Professor George F. Rice. Licensed as CC BY-SA International 4.0</i>]]></bottom>
<tag name="license.agreement" scope="all" description="Licensed under:"/>
</javadoc>
</target>
<target name="clean" description="Clean output files">
<delete dir="docs/api"/>
<delete dir="docs"/>
<delete>
<fileset dir=".">
<include name="**/*.class"/>
</fileset>
</delete>
</target>
</project>