You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by vg...@apache.org on 2005/04/07 18:24:40 UTC

svn commit: r160414 - cocoon/blocks/unsupported/ojb/trunk/build-special.xml

Author: vgritsenko
Date: Thu Apr  7 09:24:38 2005
New Revision: 160414

URL: http://svn.apache.org/viewcvs?view=rev&rev=160414
Log:
compile under jdk 1.3

Modified:
    cocoon/blocks/unsupported/ojb/trunk/build-special.xml

Modified: cocoon/blocks/unsupported/ojb/trunk/build-special.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/unsupported/ojb/trunk/build-special.xml?view=diff&r1=160413&r2=160414
==============================================================================
--- cocoon/blocks/unsupported/ojb/trunk/build-special.xml (original)
+++ cocoon/blocks/unsupported/ojb/trunk/build-special.xml Thu Apr  7 09:24:38 2005
@@ -27,9 +27,14 @@
     <fileset dir="${basedir}/lib/local">
       <include name="*.jar"/>
     </fileset>
+    <fileset dir="${basedir}/lib/endorsed">
+      <include name="*.jar"/>
+    </fileset>
   </path>
 
-  <available classname="${jdoEnhancer}" classpathref="ojb.classpath" property="jdo.present"/>
+  <available classname="${jdoEnhancer}"
+             classpathref="ojb.classpath"
+             property="jdo.present"/>
 
   <target name="main" unless="unless.exclude.webapp.samples" depends="jdo"/>
 
@@ -58,7 +63,8 @@
     </javac>
   </target>
 
-  <target name="jdo" if="jdo.present" unless="unless.exclude.webapp.samples" depends="prepare, compile">
+  <target name="jdo" depends="prepare, compile"
+          if="jdo.present" unless="unless.exclude.webapp.samples">
     <property name="build.blocks.ojb.samples.package" value="${build.blocks.ojb.samples}/org/apache/cocoon/ojb/samples/bean"/>
     <!-- Run the JDO Enhancer -->
     <echo>Running JDO Enhancer ...</echo>