views:

828

answers:

1

I have a line like :

  <svnbootstrapper LocalWorkingCopy="${projects.dir}/${project.name}" Password="4udr=qudafe$h$&e4Rub" Username="televic-education" />

in my config.xml. Because of special characters in the Password cruisecontrol service won't start. Is there a way to solve this?

Maybe with setting a property? Or escaping characters?

thx, Lieven Cardoen

+1  A: 

Replace & with &amp; in the password attribute. I don't know if that's the problem, but it's definitely a problem.

Welbog
Jeffrey Fredrick