You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by Andrew Gilbert <ag...@soundbite.com> on 2003/02/26 19:40:00 UTC

[PATCH] Small tweak to j2ee.jar fix

Thomas,

Was having a problem with init not being run when doing an "ant jar-debug". Need to prepare first, which forces init or else depend on init in main.

Also includes previous posted change to move user.home/build.properties ahead of build.properties. Ant properties are immutable.

Thanks!

Andy

Index: build.xml
===================================================================
RCS file: /home/cvspublic/db-ojb/build.xml,v
retrieving revision 1.72
diff -r1.72 build.xml
11d10
<     <property file="build.properties"/>
12a12
>     <property file="build.properties"/>
185c185
<     <target name="main" depends="checkj2ee.classes, prepare, preprocess"
---
>     <target name="main" depends="prepare, checkj2ee.classes, preprocess"

Re: [PATCH] Small tweak to j2ee.jar fix

Posted by Thomas Mahler <th...@web.de>.
checked into CVS!

thanks for the patch,
(I was tired yesterday evening, only tested to compile with target "main")

Thomas

Andrew Gilbert wrote:
> Thomas,
> 
> Was having a problem with init not being run when doing an "ant jar-debug". Need to prepare first, which forces init or else depend on init in main.
> 
> Also includes previous posted change to move user.home/build.properties ahead of build.properties. Ant properties are immutable.
> 
> Thanks!
> 
> Andy
> 
> Index: build.xml
> ===================================================================
> RCS file: /home/cvspublic/db-ojb/build.xml,v
> retrieving revision 1.72
> diff -r1.72 build.xml
> 11d10
> <     <property file="build.properties"/>
> 12a12
> 
>>    <property file="build.properties"/>
> 
> 185c185
> <     <target name="main" depends="checkj2ee.classes, prepare, preprocess"
> ---
> 
>>    <target name="main" depends="prepare, checkj2ee.classes, preprocess"
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
> For additional commands, e-mail: ojb-dev-help@db.apache.org
> 
>