Description: Use "compile" instead of "compileall" in order to avoid building 
 the extensions
Origin: vendor
Forwarded: no
Author: <gregoa@debian.org>
Last-Update: 2013-06-23

--- a/build.xml
+++ b/build.xml
@@ -165,6 +165,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>
@@ -182,6 +184,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://docs.jboss.org/hibernate/core/3.6/javadocs/"/>
+			-->
             <doctitle><![CDATA[<h1>${doctitle}</h1>]]></doctitle>
 			<bottom><![CDATA[<a href="http://www.glazedlists.com" target="_top">Glazed Lists</a>, Copyright &#169; 2003 publicobject.com, O'Dell Engineering.<br>Documentation build by ${user.name} at ${datestamp.dateAndTime}]]></bottom>
 		</javadoc>
@@ -226,7 +229,11 @@
         <property name="bundle.version" value="${implementation.version}"/>
     </target>
 	
+	<!--
+	we just depend on "compile" in order to leave out the extensions
     <target name="jar" depends="compileall,update-version-properties"
+    -->
+    <target name="jar" depends="compile,update-version-properties"
         description="Creates glazedlists jar file (which is also a valid OSGi bundle) containing all UI libraries.">
 
         <mkdir dir="tools"/>
@@ -980,4 +987,4 @@
         </delete>
     </target>
 
-</project>
\ No newline at end of file
+</project>
