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
|
Description: Use "compile" instead of "compileall" in order to avoid building
the extensions
Origin: vendor
Forwarded: no
Author: <gregoa@debian.org>
Last-Update: 2012-04-17
--- a/build.xml
+++ b/build.xml
@@ -131,6 +131,8 @@
<javadoc
destdir="${docs.dir}/api" author="true" use="true" windowtitle="Glazed Lists" source="${java.target.version}">
<packageset dir="source"><exclude name="**/impl/**"/><exclude name="**/migrationkit/**"/></packageset>
+ <!--
+ we don't build docs for the extensions because they are not built
<packageset dir="extensions/calculation/source"><exclude name="**/impl/**"/></packageset>
<packageset dir="extensions/swt/source"><exclude name="**/impl/**"/><exclude name="**/migrationkit/**"/></packageset>
<packageset dir="extensions/ktable/source"><exclude name="**/impl/**"/></packageset>
@@ -148,6 +150,7 @@
<link href="http://www.jfree.org/jfreechart/api/javadoc/"/>
<link href="http://download.java.net/javadesktop/swinglabs/releases/0.8/docs/api/"/>
<link href="http://www.hibernate.org/hib_docs/v3/api/"/>
+ -->
<doctitle><![CDATA[<h1>${doctitle}</h1>]]></doctitle>
<bottom><![CDATA[<a href="http://publicobject.com/glazedlists/" target="_top">Glazed Lists</a>, Copyright © 2003 publicobject.com, O'Dell Engineering.<br>Documentation build by ${user.name} at ${datestamp.dateAndTime}]]></bottom>
</javadoc>
@@ -159,7 +162,11 @@
Construct the .jar file for use in a library.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
- <target name="jar" depends="compileall"
+ <!--
+ <target name="jar" depends="compileall"
+ we just depend on "compile" in order to leave out the extensions
+ -->
+ <target name="jar" depends="compile"
description="Creates glazedlists jar file (which is also a valid OSGi bundle) containing all UI libraries.">
<mkdir dir="tools"/>
@@ -1032,4 +1039,4 @@
</delete>
</target>
-</project>
\ No newline at end of file
+</project>
|