fix eclipse warnings
[nikiroo-utils.git] / build.xml
index f47d0416f26867a228214833504dee768c924982..35d82d30a05a652726d68bfb79f6b469751722b5 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -51,6 +51,9 @@
        <jar destfile="${jar.dir}/${ant.project.name}.jar"
             basedir="${classes.dir}">
          <fileset dir="${resources.dir}"/>
+         <!-- By including Jexer's source, the LGPL terms are
+              automatically satisfied. -->
+         <fileset dir="${src.dir}"/>
          <manifest>
            <attribute name="Main-Class" value="jexer.demos.Demo1"/>
          </manifest>
 
     <target name="main" depends="clean,run"/>
 
+    <target name="doc" depends="docs"/>
+
     <target name="docs" depends="jar">
       <javadoc
          destdir="docs/api"
          author="true"
          version="true"
          use="true"
-         access="private"
+         access="protected"
          failonwarning="true"
          windowtitle="Jexer - Java Text User Interface - API docs">