-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
55 lines (44 loc) · 1.93 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<!-- ====================================================================== -->
<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above. -->
<!-- ====================================================================== -->
<project name="MaajScript" default="package" basedir=".">
<target name="run" depends="compile">
<java classpath="target/classes/"
classname="maaj.Repl"
fork="true"/>
</target>
<!-- ====================================================================== -->
<!-- Import maven-build.xml into the current project -->
<!-- ====================================================================== -->
<import file="maven-build.xml"/>
<!-- ====================================================================== -->
<!-- Help target -->
<!-- ====================================================================== -->
<target name="help">
<echo message="Please run: $ant -projecthelp"/>
</target>
<target name="javadoc2" description="Generates the Javadoc of the application">
<javadoc sourcepath="src/main/java"
overview="src/main/javadoc/overview.html"
packagenames="*"
destdir="./target/docs"
access="protected"
old="false"
verbose="false"
version="true"
use="true"
author="true"
splitindex="false"
nodeprecated="false"
nodeprecatedlist="false"
notree="false"
noindex="false"
nohelp="false"
nonavbar="false"
serialwarn="false"
charset="UTF8"
linksource="false"
breakiterator="false"/>
</target>
</project>