No exclusions, we've always got all of our dependencies.

This commit is contained in:
Michael Bayne
2010-10-15 16:48:27 +00:00
parent 8181c409f9
commit 590cf991d7
+2 -14
View File
@@ -67,10 +67,6 @@
<javac srcdir="${src.dir}" destdir="${classes.dir}" includeAntRuntime="false" <javac srcdir="${src.dir}" destdir="${classes.dir}" includeAntRuntime="false"
debug="on" optimize="${build.optimize}" source="1.5" target="1.5" encoding="utf-8"> debug="on" optimize="${build.optimize}" source="1.5" target="1.5" encoding="utf-8">
<classpath refid="classpath"/> <classpath refid="classpath"/>
<exclude name="com/samskivert/depot/OldEHCacheAdapter.java" unless="build.ehcache"/>
<exclude name="com/samskivert/depot/EHCacheAdapter.java" unless="build.ehcache"/>
<exclude name="com/samskivert/depot/tools/**" unless="build.tools"/>
<exclude name="com/samskivert/depot/tests/**" unless="build.tests"/>
<compilerarg value="-Xlint"/> <compilerarg value="-Xlint"/>
<compilerarg value="-Xlint:-serial"/> <compilerarg value="-Xlint:-serial"/>
</javac> </javac>
@@ -95,12 +91,7 @@
<javadoc windowtitle="${lib.name} API" doctitle="${lib.name} API" <javadoc windowtitle="${lib.name} API" doctitle="${lib.name} API"
overview="src/main/javadoc/overview.html" destdir="${javadoc.dir}" overview="src/main/javadoc/overview.html" destdir="${javadoc.dir}"
additionalparam="-breakiterator"> additionalparam="-breakiterator">
<packageset dir="${src.dir}"> <packageset dir="${src.dir}"/>
<exclude name="com/samskivert/depot/impl/**"/>
<exclude name="com/samskivert/depot/tests/**"/>
<exclude name="com/samskivert/depot/EHCacheAdapter.java" unless="build.ehcache"/>
<exclude name="com/samskivert/depot/tools/**" unless="build.tools"/>
</packageset>
<bottom>Copyright &#169; 2006-${year} Michael Bayne, et al. All Rights Reserved.</bottom> <bottom>Copyright &#169; 2006-${year} Michael Bayne, et al. All Rights Reserved.</bottom>
<classpath refid="classpath"/> <classpath refid="classpath"/>
<link href="http://java.sun.com/j2se/1.5/docs/api/"/> <link href="http://java.sun.com/j2se/1.5/docs/api/"/>
@@ -125,10 +116,7 @@
<sysproperty key="com.samskivert.depot.debug" value="${debug}"/> <sysproperty key="com.samskivert.depot.debug" value="${debug}"/>
<formatter type="brief" usefile="false"/> <formatter type="brief" usefile="false"/>
<batchtest> <batchtest>
<fileset dir="${test.dir}"> <fileset dir="${test.dir}" includes="**/${test}*Test.java"/>
<include name="**/${test}*Test.java"/>
<exclude name="com/samskivert/depot/EHCacheAdapter.java" unless="ehcache.present"/>
</fileset>
</batchtest> </batchtest>
</unit> </unit>
</target> </target>