Commit | Line | Data |
---|---|---|
7d4115a5 KL |
1 | <!-- |
2 | ||
3 | Jexer - Java Text User Interface - Ant build | |
4 | ||
5 | $Id$ | |
6 | ||
7 | This program is licensed under the GNU Lesser General Public License | |
8 | Version 3. Please see the file "COPYING" in this directory for more | |
9 | information about the GNU Lesser General Public License Version 3. | |
10 | ||
11 | Copyright (C) 2015 Kevin Lamonte | |
12 | ||
13 | This library is free software; you can redistribute it and/or modify | |
14 | it under the terms of the GNU Lesser General Public License as | |
15 | published by the Free Software Foundation; either version 3 of the | |
16 | License, or (at your option) any later version. | |
17 | ||
18 | This program is distributed in the hope that it will be useful, | |
19 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 | GNU General Public License for more details. | |
22 | ||
23 | You should have received a copy of the GNU Lesser General Public | |
24 | License along with this program; if not, see | |
25 | http://www.gnu.org/licenses/, or write to the Free Software | |
26 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 | |
27 | USA | |
28 | ||
29 | --> | |
30 | ||
31 | <project name="jexer" basedir="." default="run"> | |
32 | ||
33 | <property name="src.dir" value="src"/> | |
34 | <property name="build.dir" value="build"/> | |
35 | <property name="classes.dir" value="${build.dir}/classes"/> | |
36 | <property name="jar.dir" value="${build.dir}/jar"/> | |
37 | ||
7d4115a5 | 38 | <target name="clean"> |
70f5b2bb | 39 | <delete dir="${build.dir}"/> |
7d4115a5 KL |
40 | </target> |
41 | ||
42 | <target name="compile"> | |
70f5b2bb KL |
43 | <mkdir dir="${classes.dir}"/> |
44 | <javac srcdir="${src.dir}" destdir="${classes.dir}" | |
7d4115a5 KL |
45 | includeantruntime="false"/> |
46 | </target> | |
47 | ||
48 | <target name="jar" depends="compile"> | |
70f5b2bb KL |
49 | <mkdir dir="${jar.dir}"/> |
50 | <jar destfile="${jar.dir}/${ant.project.name}.jar" | |
51 | basedir="${classes.dir}"> | |
52 | <manifest> | |
53 | <attribute name="Main-Class" value="jexer.demos.Demo1"/> | |
54 | </manifest> | |
55 | </jar> | |
7d4115a5 KL |
56 | </target> |
57 | ||
70f5b2bb | 58 | <target name="run" depends="jar"> |
1ac2ccb1 KL |
59 | <java jar="${jar.dir}/${ant.project.name}.jar" fork="true"> |
60 | <arg value="-Djexer.AWT=true"/> | |
61 | </java> | |
7d4115a5 KL |
62 | </target> |
63 | ||
64 | <target name="clean-build" depends="clean,jar"/> | |
65 | ||
66 | <target name="main" depends="clean,run"/> | |
70f5b2bb | 67 | |
05dbb28d KL |
68 | <target name="docs" depends="jar"> |
69 | <javadoc | |
70f5b2bb KL |
70 | destdir="docs/api" |
71 | author="true" | |
72 | version="true" | |
73 | use="true" | |
05dbb28d KL |
74 | access="private" |
75 | failonwarning="true" | |
70f5b2bb | 76 | windowtitle="Jexer - Java Text User Interface - API docs"> |
05dbb28d KL |
77 | |
78 | <fileset dir="${src.dir}" defaultexcludes="yes"> | |
79 | <include name="jexer/**"/> | |
05dbb28d KL |
80 | </fileset> |
81 | ||
82 | <doctitle> | |
7b5261bc | 83 | <![CDATA[<h1>Jexer - Java Text User Interface Library</h1>]]> |
05dbb28d KL |
84 | </doctitle> |
85 | <bottom> | |
86 | <![CDATA[<i>Copyright © 2015 Kevin Lamonte. Licensed LGPLv3+</i>]]> | |
87 | </bottom> | |
88 | <!-- | |
89 | <tag name="todo" scope="all" description="To do:"/> | |
90 | <group title="Group 1 Packages" packages="com.dummy.test.a*"/> | |
91 | <group title="Group 2 Packages" packages="com.dummy.test.b*:com.dummy.test.c*"/> | |
92 | <link offline="true" | |
93 | href="http://docs.oracle.com/javase/7/docs/api/" | |
94 | packagelistLoc="C:\tmp"/> | |
95 | <link href="http://docs.oracle.com/javase/7/docs/api/"/> | |
96 | --> | |
97 | </javadoc> | |
98 | </target> | |
70f5b2bb | 99 | |
7d4115a5 | 100 | </project> |