You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ju...@apache.org on 2009/03/26 16:57:07 UTC

svn commit: r758705 - /incubator/pdfbox/fontbox/trunk/build.xml

Author: jukka
Date: Thu Mar 26 15:56:56 2009
New Revision: 758705

URL: http://svn.apache.org/viewvc?rev=758705&view=rev
Log:
PDFBOX-437: Prepare JempBox and FontBox for release

There are no tests in FontBox! So we don't need JUnit...

Modified:
    incubator/pdfbox/fontbox/trunk/build.xml

Modified: incubator/pdfbox/fontbox/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/pdfbox/fontbox/trunk/build.xml?rev=758705&r1=758704&r2=758705&view=diff
==============================================================================
--- incubator/pdfbox/fontbox/trunk/build.xml (original)
+++ incubator/pdfbox/fontbox/trunk/build.xml Thu Mar 26 15:56:56 2009
@@ -22,7 +22,8 @@
 
     <property name="build.compiler" value="modern" />
     <property name="src.dir" value="src/main/java" />
-    <property name="dest.dir" value="classes" />
+    <property name="target.dir" value="target" />
+    <property name="dest.dir" value="${target.dir}/classes" />
     <property name="bin.dir" value="bin" />
     <property name="website.dir" value="website" />
     <property name="website.build.dir" value="${website.dir}/build/site" />
@@ -48,9 +49,6 @@
     <property name="antlr.url" value="${maven.repo}/antlr/antlr/2.7.6/antlr-2.7.6.jar" />
     <property name="antlr.jar" value="${tool.dir}/antlr.jar" />
 
-    <property name="junit.jar.dir" value="lib"/>
-    <property name="junit.jar" value="${junit.jar.dir}/junit.jar" />
-    
     <!--.NET properties -->
     <property name="ikvm.dir" value="."/>
     <property name="ikvmc" value="${ikvm.dir}/bin/ikvmc.exe"/>
@@ -128,17 +126,6 @@
         <javac srcdir="${src.dir}" destdir="${dest.dir}" debug="on" classpathref="build.classpath" deprecation="on" encoding="ISO-8859-1"/>
     </target>
 
-    <target name="junit" depends="clean,compile" description="run junit tests">
-        <junit printsummary="off" fork="on" dir=".">
-            <classpath>
-                <pathelement path="${dest.dir}"/>
-                <pathelement path="." />
-            </classpath>
-            <formatter usefile="false" type="plain" />
-            <test name="test.fontbox.TestAll" />
-        </junit>
-    </target>
-
     <target name="checkstyle" depends="compile,get.checkstyle">
         <!-- This doesn't work when run from netbeans for some reason -->
         <taskdef name="checkstyle"