Author: stevencaswell
Date: Wed May  4 18:26:00 2005
New Revision: 168225

URL: http://svn.apache.org/viewcvs?rev=168225&view=rev
Log:
added compile.excludes attribute to the javac element, with the value set to 
the compile.excludes property;
added excludepackagenames attribute to the javadoc element, with the value set 
to the javadoc.excludepackagenames property;
added dist-build-2.1 target to build the 2.1 release without the text package

Modified:
    jakarta/commons/proper/lang/trunk/build.xml

Modified: jakarta/commons/proper/lang/trunk/build.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/lang/trunk/build.xml?rev=168225&r1=168224&r2=168225&view=diff
==============================================================================
--- jakarta/commons/proper/lang/trunk/build.xml (original)
+++ jakarta/commons/proper/lang/trunk/build.xml Wed May  4 18:26:00 2005
@@ -61,6 +61,7 @@
                deprecation="${compile.deprecation}"
                target="${compile.target}"
                source="${compile.source}"
+              excludes="${compile.excludes}"
                optimize="${compile.optimize}">
             <classpath refid="compile.classpath"/>
         </javac>
@@ -95,6 +96,7 @@
                         destdir="${dist.home}/docs/api"
                         
overview="${source.home}/org/apache/commons/lang/overview.html"
                         packagenames="org.apache.commons.*"
+                        excludepackagenames="${javadoc.excludepackagenames}"
                         author="true"
                         version="true"
                         doctitle="&lt;h1&gt;${component.title}&lt;/h1&gt;"
@@ -112,6 +114,10 @@
         <copy file="NOTICE.txt" todir="${dist.home}"/>
         <copy file="RELEASE-NOTES.txt" todir="${dist.home}"/>
         <antcall target="jar"/>
+    </target>
+    <target name="dist-build-2.1" description="Build binary distribution files 
excluding the text package">
+        <delete dir="src/java/org/apache/commons/lang/text"/>
+        <antcall target="dist-build"/>
     </target>
     <target name="dist-build" depends="clean,dist" description="Build binary 
distribution files">
         <mkdir dir="${final.name}"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to