My problem is as described in the title. I'd like to add an HREF into the output of a surefire-report. But surefire is escaping the <.

Does anyone know how to avoid the escaping?

link|improve this question
4  
did you try &lt; instead of <? – gnat Dec 30 '11 at 13:33
feedback

1 Answer

The surefire-report is XML, right? If you want to embed HTML such as an href tag into an XML document, you have two choices:

  1. Escape it as follows: &lt;a href=\&quot;http://www.stackoverflow.com\&quot;/&gt;
  2. Use a CDATA section, remembering to escape the ]]> bit of course!
link|improve this answer
I am almost positive that this is the answer. It is the only one that makes sense. – maple_shaft Jan 3 at 1:30
It didn't work that way, but lead me to the solution I was looking for. The in 1. described solution leads to escaped < in the surefire-report too. As the URL is then simply written and interpreted I saw in the Jenkins-Report that if you use URLs like http://www.stackoverflow.com they are shown as links in Jenkins anyway. That was too simple. :) – jan Jan 5 at 15:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.