-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
115 lines (105 loc) · 4.44 KB
/
build.xml
File metadata and controls
115 lines (105 loc) · 4.44 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<project name="WordHoard" default="bin" basedir=".">
<property name="wordhoard" value="edu/northwestern/at/wordhoard"/>
<property name="model" value ="edu/northwestern/at/wordhoard/model"/>
<property name="swing" value ="edu/northwestern/at/wordhoard/swing"/>
<property name="tools" value ="edu/northwestern/at/wordhoard/tools"/>
<property name="server" value ="edu/northwestern/at/wordhoard/server"/>
<property name="server-model" value ="edu/northwestern/at/wordhoard/server/model"/>
<property name="scripts" value="edu/northwestern/at/wordhoard/scripts"/>
<property name="utils" value="edu/northwestern/at/utils"/>
<property name="smoothwindows"
value ="edu/northwestern/at/utils/swing/plaf/smoothwindows"/>
<property name="build.compiler" value="modern"/>
<path id="classpath">
<pathelement path="bin"/>
<fileset dir="lib">
<include name="*.jar"/>
<include name="*.zip"/>
</fileset>
</path>
<target name="clean">
<delete dir="bin"/>
<delete dir="javadoc"/>
</target>
<target name="init">
<mkdir dir="bin"/>
<mkdir dir="javadoc"/>
<copy file="misc/log4j2.xml" todir="bin"/>
<copy file="misc/hibernate.properties" todir="bin"/>
<copy todir="bin/${scripts}/">
<fileset dir="src/${scripts}" includes="**/*.bsh"/>
</copy>
<copy todir="bin/${wordhoard}/resources">
<fileset dir="src/${wordhoard}/resources"/>
</copy>
<copy todir="bin/${swing}/resources">
<fileset dir="src/${swing}/resources"/>
</copy>
<copy todir="bin/${swing}/calculator/resources">
<fileset dir="src/${swing}/calculator/resources"/>
</copy>
<copy todir="bin/${swing}/calculator/help">
<fileset dir="src/${swing}/calculator/help"/>
</copy>
<copy todir="bin/${utils}/swing/notepad/resources">
<fileset dir="src/${utils}/swing/notepad/resources"/>
</copy>
<copy todir="bin/${utils}/swing/resources">
<fileset dir="src/${utils}/swing/resources"/>
</copy>
<copy todir="bin/${utils}/swing/icons/resources">
<fileset dir="src/${utils}/swing/icons/resources"/>
</copy>
<copy todir="bin/${utils}/swing/styledtext/resources">
<fileset dir="src/${utils}/swing/styledtext/resources"/>
</copy>
</target>
<target name="compile" depends="init">
<javac srcdir="src" destdir="bin" classpathref="classpath"
release="8" debug="on" deprecation="on" includeantruntime="true">
</javac>
</target>
<target name="bin" depends="compile"/>
<target name="full" depends="clean,bin"/>
<target name="doc" depends="init">
<javadoc sourcepath="src" destdir="javadoc"
packagenames="edu.northwestern.at.*"
windowtitle="WordHoard"
classpathref="classpath"
overview="misc/overview.html"
excludepackagenames="edu.northwestern.at.utils.taglets.*"
package="true"
maxmemory="500m">
<arg value="-Xmaxwarns"/>
<arg value="1000"/>
<arg value="-Xmaxerrs"/>
<arg value="1000"/>
<doctitle><![CDATA[<h2>WordHoard</h2>]]></doctitle>
<tag name="hibernate.class" description="hibernate.class" enabled="false"/>
<tag name="hibernate.subclass" description="hibernate.subclass" enabled="false"/>
<tag name="hibernate.discriminator" description="hibernate.discriminator"
enabled="false"/>
<tag name="hibernate.id" description="hibernate.id" enabled="false"/>
<tag name="hibernate.property" description="hibernate.property" enabled="false"/>
<tag name="hibernate.column" description="hibernate.column" enabled="false"/>
<tag name="hibernate.many-to-one" description="hibernate.many-to-one" enabled="false"/>
<tag name="hibernate.list" description="hibernate.list" enabled="false"/>
<tag name="hibernate.map" description="hibernate.map" enabled="false"/>
<tag name="hibernate.bag" description="hibernate.bag" enabled="false"/>
<tag name="hibernate.set" description="hibernate.set" enabled="false"/>
<tag name="hibernate.collection-key" description="hibernate.collection-key"
enabled="false"/>
<tag name="hibernate.collection-element" description="hibernate.collection-element"
enabled="false"/>
<tag name="hibernate.collection-index" description="hibernate.collection-index"
enabled="false"/>
<tag name="hibernate.collection-many-to-many"
description="hibernate.collection-many-to-many"
enabled="false"/>
<tag name="hibernate.collection-one-to-many"
description="hibernate.collection-one-to-many"
enabled="false"/>
<tag name="hibernate.component" description="hibernate.component" enabled="false"/>
</javadoc>
</target>
</project>