-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
20 lines (20 loc) · 1.08 KB
/
build.xml
File metadata and controls
20 lines (20 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
<!-- for some information on what you could do (e.g. targets to override). -->
<!-- If you delete this file and reopen the project it will be recreated. -->
<project name="me.mthw.forge" default="netbeans" basedir=".">
<description>Builds, tests, and runs the project me.mthw.forge.</description>
<import file="nbproject/build-impl.xml"/>
<target name="javadoc" depends="build-init,-javadoc-init">
<mkdir dir="docs/"/>
<javadoc destdir="docs/" packagenames="${module.javadoc.packages}" source="${javac.source}" windowtitle="${javadoc.title}" encoding="UTF-8" charset="UTF-8">
<classpath refid="processor.cp"/> <!-- #157320 -->
<sourcepath>
<pathelement location="${src.dir}"/>
<pathelement location="${build.dir}/classes-generated"/>
</sourcepath>
<doctitle>${javadoc.title}</doctitle>
<header>${javadoc.header}</header>
</javadoc>
</target>
</project>