On Saturday, May 4, 2002, at 01:51 PM, isaac gouy wrote:
> thanks for the suggestions > I guess I should go look for some other persistence > layer that I can at least compile :( If you are going to look at something else, there seems to be a lot of buzz around Object Bridge. It currently lives at http://objectbridge.sf.net but may be coming to Jakarta soon. Sorry you're having trouble building torque. I just tried again to double check and it's building fine for me. Part of the confusion no doubt comes from the fact that we currently have two builds in place. We are in transition to using Maven exclusively. Here's what works for me: I have the following settings in my ~/build.properties file: lib.repo = ${user.home}/java/lib maven.home = ${user.home}/java/maven For good measure I got a fresh checkout of both maven and torque, and cleared the contents of my lib.repo: % cd ~/java/projects % cvs co jakarta-turbine-maven jakarta-turbine-torque % rm ~/java/lib/* I bootstrapped maven (which also installs it and puts a few jars into lib.repo): % cd jakarta-turbine-maven % ant -f build-bootstrap.xml And finally I build torque: % cd ../jakarta-turbine-torque % ant -f build-maven.xml maven:jar As Maven matures and settles down, the need to update Maven in parallel with updating torque will surely go away. But for the time being it's necessary. Hope that helps. -Eric -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
