I agree with Jacopo, I have put in place a task that update OFBiz automatically. Actually I have 3 versions of OFBiz : std trunk for POS - I do most of my modifications there with Opentaps modules
I run by hand ant or ant run-install for each of them suiving if they are new data or not. It takes me less than 10' per day (and during this elapse most of this time I do other tasks) If someone is interested here is the batch I use on XP for that __________________________________________________________________________________________________ @Echo off d: cd \WorkspaceNew\ofbiz ECHO ofbiz====================================================================== call svn up ECHO ofbiz====================================================================== ECHO * ECHO * cd \WorkspaceNew\ofbiz.pos ECHO ofbiz.pos================================================================== call svn up ECHO ofbiz.pos================================================================== ECHO * ECHO * cd \WorkspaceNew\opentaps ECHO opentaps=================================================================== call svn up cd \WorkspaceNew\opentaps\hot-deploy\crmsfa call svn up cd \WorkspaceNew\opentaps\hot-deploy\financials call svn up ECHO opentaps=================================================================== ECHO * ECHO * :menu echo a) ant echo b) install echo q) quitter choice /c:abq Quelle option ? if errorlevel = 3 goto fin if errorlevel = 2 goto install if errorlevel = 1 goto ant :ant cd \WorkspaceNew\ofbiz call ant pause ofbiz ok ? cd \WorkspaceNew\ofbiz.pos call ant pause ofbiz.pos ok ? cd \WorkspaceNew\opentaps call ant pause opentaps ok ? goto fin :install cd \WorkspaceNew\ofbiz call ant run-install pause ofbiz ok ? cd \WorkspaceNew\ofbiz.pos call ant run-install pause ofbiz.pos ok ? cd \WorkspaceNew\opentaps call ant run-install pause opentaps ok ? :fin __________________________________________________________________________________________________ Before the choise I have only to search for the token "data" and that's it. This may be adapted easily even in a .sh I guess. Jacques From: "Jacopo Cappellato" <[EMAIL PROTECTED]> > Andrew, > > Andrew Ballantine wrote: > > ... > > My own personal experience of downloading from the latest SVN of ofbiz is of > > failure to build. Maybe I have been unlucky, but I would prefer there to be > > a current release that has all major bugs resolved as a working whole. > > > You have been really unlucky... I update the system mostly every day and > very few times I failed to build the system. > > Jacopo
