Re: [OJB-developers] [patch] build.xml
Brought to you by:
thma
From: <ri...@ya...> - 2002-04-10 17:32:29
|
Hi, The released OJB 0.8.375 doesn't build without this diff applied. Thomas, you should re-release a patched version soon! Greetings, Ricardo ----- Original Message -----=20 From: "Thomas Mahler" <tho...@ho...> To: "Martin Poeschl" <mpo...@ma...> Cc: <obj...@li...> Sent: Monday, April 08, 2002 1:28 PM Subject: Re: [OJB-developers] [patch] build.xml > thanks, >=20 > I forgot to check in my changes... >=20 > Thomas >=20 > Martin Poeschl wrote: >=20 > > there still exists a bug in the buil.xml > >=20 > > a patch is included ;-) > >=20 > > martin > >=20 > >=20 > > = ------------------------------------------------------------------------ > >=20 > > Index: build.xml > > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > RCS file: /cvsroot/objectbridge/ojb-1-0/build.xml,v > > retrieving revision 1.11 > > diff -u -r1.11 build.xml > > --- build.xml 30 Mar 2002 12:12:52 -0000 1.11 > > +++ build.xml 8 Apr 2002 14:56:18 -0000 > > @@ -1,4 +1,4 @@ > > -<!--=20 > > +<!-- > > ObJectBridge ANT build configuration.=20 > > initial author: Thomas Mahler > > contains modifications by Chris Greenlee and others. > > @@ -40,24 +40,25 @@ > > <!-- Preprocess Java Source Code --> > > <target name=3D"preprocess" depends=3D"prepare"> > > <echo message=3D"using switches: ${JDK}, ${DEBUG}"/> > > - <java fork=3D"no" classname=3D"org.hsqldb.util.CodeSwitcher" = failonerror=3D"true" classpath=3D"compilation-classpath"> > > - <arg value=3D"${source}" /> > > - <arg value=3D"${JDK}" /> > > - <arg value=3D"${DEBUG}" /> > > - </java> > > + <java fork=3D"no" classname=3D"org.hsqldb.util.CodeSwitcher" = failonerror=3D"true"> > > + <arg value=3D"${source}" /> > > + <classpath refid=3D"compilation-classpath" /> > > + <arg value=3D"${JDK}" /> > > + <arg value=3D"${DEBUG}" /> > > + </java> > > </target> > > -=20 > > + > > <!-- Delete all the directories created in prepare --> > > <target name=3D"clean" depends=3D"init" description=3D"Cleans = the build and distribution directories."> > > <delete dir=3D"${build}" verbose=3D"false"/> > > <delete dir=3D"${dist}" verbose=3D"false"/> > > - </target>=20 > > -=20 > > + </target> > > + > > <!-- Build all the sources with debug and deprecation --> > > <target name=3D"main" depends=3D"prepare" = description=3D"Compile all Java sources with debugging on."> > > <javac srcdir=3D"${source}" destdir=3D"${classes}" = excludes=3D"${excludes}" debug=3D"on" deprecation=3D"${deprecation}"> > > <classpath refid=3D"compilation-classpath" /> > > - </javac> =20 > > + </javac> > > </target>=20 > > =20 > > <!-- Same as main, but with cleanup, preprocessing and building = of oql parser --> > >=20 > > The command completed successfully. > >=20 >=20 >=20 >=20 > _______________________________________________ > Objectbridge-developers mailing list > Obj...@li... > https://lists.sourceforge.net/lists/listinfo/objectbridge-developers >=20 |