Commit | Line | Data |
---|---|---|
7d4115a5 KL |
1 | <!-- |
2 | ||
3 | Jexer - Java Text User Interface - Ant build | |
4 | ||
e16dda65 KL |
5 | The MIT License (MIT) |
6 | ||
c1d8e2b8 | 7 | Copyright (C) 2019 Kevin Lamonte |
e16dda65 KL |
8 | |
9 | Permission is hereby granted, free of charge, to any person | |
10 | obtaining a copy of this software and associated documentation | |
11 | files (the "Software"), to deal in the Software without | |
12 | restriction, including without limitation the rights to use, copy, | |
13 | modify, merge, publish, distribute, sublicense, and/or sell copies | |
14 | of the Software, and to permit persons to whom the Software is | |
15 | furnished to do so, subject to the following conditions: | |
16 | ||
17 | The above copyright notice and this permission notice shall be | |
18 | included in all copies or substantial portions of the Software. | |
19 | ||
20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
21 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
22 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | |
23 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | |
24 | BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | |
25 | ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | |
26 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
27 | SOFTWARE. | |
7d4115a5 KL |
28 | |
29 | --> | |
30 | ||
8caf0d51 | 31 | <project name="jexer" basedir="." default="jar"> |
7d4115a5 | 32 | |
1ef85570 | 33 | <property name="version" value="0.3.2"/> |
e16dda65 KL |
34 | <property name="src.dir" value="src"/> |
35 | <property name="resources.dir" value="resources"/> | |
36 | <property name="build.dir" value="build"/> | |
37 | <property name="classes.dir" value="${build.dir}/classes"/> | |
38 | <property name="jar.dir" value="${build.dir}/jar"/> | |
39 | <property name="apidocs.dir" value="docs/api"/> | |
40 | ||
41 | <target name="clean"> | |
42 | <delete dir="${build.dir}"/> | |
43 | <delete dir="${apidocs.dir}"/> | |
44 | </target> | |
45 | ||
46 | <target name="compile"> | |
47 | <mkdir dir="${classes.dir}"/> | |
48 | <javac srcdir="${src.dir}" destdir="${classes.dir}" | |
591688f5 KL |
49 | includeantruntime="false" |
50 | debug="on" | |
51 | debuglevel="lines,vars,source" | |
227d6812 KL |
52 | target="1.6" |
53 | source="1.6" | |
591688f5 | 54 | /> |
e16dda65 KL |
55 | </target> |
56 | ||
57 | <target name="jar" depends="compile"> | |
58 | <mkdir dir="${jar.dir}"/> | |
59 | <jar destfile="${jar.dir}/${ant.project.name}.jar" | |
591688f5 | 60 | basedir="${classes.dir}"> |
e16dda65 | 61 | <fileset dir="${resources.dir}"/> |
339652cc KL |
62 | |
63 | <!-- Include properties files. --> | |
64 | <fileset dir="${src.dir}" includes="**/*.properties"/> | |
65 | ||
e16dda65 | 66 | <!-- Include source by default. --> |
eb29bbb5 | 67 | <!-- <fileset dir="${src.dir}"/> --> |
339652cc | 68 | |
e16dda65 | 69 | <manifest> |
591688f5 KL |
70 | <attribute name="Main-Class" value="jexer.demos.Demo1"/> |
71 | <attribute name="Implementation-Version" value="${version}"/> | |
e16dda65 KL |
72 | </manifest> |
73 | </jar> | |
74 | </target> | |
75 | ||
76 | <target name="run" depends="jar"> | |
77 | <java jar="${jar.dir}/${ant.project.name}.jar" fork="true"> | |
78 | <arg value="-Djexer.Swing=true"/> | |
79 | </java> | |
80 | </target> | |
81 | ||
82 | <target name="clean-build" depends="clean,jar"/> | |
83 | ||
84 | <target name="build" depends="jar"/> | |
85 | ||
86 | <target name="doc" depends="docs"/> | |
87 | ||
a39c5665 KL |
88 | <!-- |
89 | For Java 11+, add additionalparam="dash-dash-frames". My | |
90 | workflow is back to Java 8, so leaving this comment here for | |
91 | myself when Debian stables moves to Java 11. | |
92 | --> | |
93 | ||
94 | <target name="docs" depends="jar"> | |
e16dda65 | 95 | <javadoc |
591688f5 KL |
96 | destdir="${apidocs.dir}" |
97 | author="true" | |
98 | version="true" | |
99 | use="true" | |
100 | access="protected" | |
abb84744 | 101 | windowtitle="Jexer - Java Text User Interface - API docs" |
abb84744 | 102 | > |
e16dda65 | 103 | <fileset dir="${src.dir}" defaultexcludes="yes"> |
339652cc | 104 | <include name="jexer/**/*.java"/> |
e16dda65 KL |
105 | </fileset> |
106 | ||
107 | <doctitle> | |
591688f5 | 108 | <![CDATA[<h1>Jexer - Java Text User Interface Library</h1>]]> |
e16dda65 KL |
109 | </doctitle> |
110 | <bottom> | |
c1d8e2b8 | 111 | <![CDATA[<i>Copyright © 2019 Kevin Lamonte. Licensed MIT.</i>]]> |
e16dda65 KL |
112 | </bottom> |
113 | <!-- | |
591688f5 KL |
114 | <tag name="todo" scope="all" description="To do:"/> |
115 | <group title="Group 1 Packages" packages="com.dummy.test.a*"/> | |
116 | <group title="Group 2 Packages" packages="com.dummy.test.b*:com.dummy.test.c*"/> | |
117 | <link offline="true" | |
118 | href="http://docs.oracle.com/javase/7/docs/api/" | |
119 | packagelistLoc="C:\tmp"/> | |
120 | <link href="http://docs.oracle.com/javase/7/docs/api/"/> | |
e16dda65 KL |
121 | --> |
122 | </javadoc> | |
123 | </target> | |
70f5b2bb | 124 | |
7d4115a5 | 125 | </project> |