Phillip A. Lindsay wrote on Monday, November 15, 2004 8:46 PM: > Did inheriting project/build.properties break in 1.0.1? > We are NOT seeing "maven.repo.remote" setting in extended projects? > -phil
A bug fix unintenionally broke the inheritance for "maven.repo.remote" (well not true, the value is inherited, but too late). I've updated my projects using the following line (assuming you're using *nix or Cygwin): for a in `find . -name project.xml`; do P=`dirname $a`/`basename $a .xml`.properties; echo 'maven.repo.remote=<YOUR REPOs HERE>' > p~; if test -f $P; then cat $P >> p~; fi; cp p~ $P; done This also handles the case, if you did not need a project.properties up to now in a subproject. - J�rg --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
