Skip to content

Commit

Permalink
[FIXED JENKINS-25511] [JENKINS-17309] Reverted XML escaping of message.
Browse files Browse the repository at this point in the history
Revert of fix for JENKINS-17309. Previous solution was too aggressive, it makes sense to escape only messages from parsers that parse non-XML files. XML parsers should not escape entities at all.
AbstractAnnotation never escapes entities now, only GCC parser escapes and invokes constructor with escaped message.
  • Loading branch information
uhafner committed Nov 16, 2014
1 parent 96b9be3 commit 4793683
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 3 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion analysis-collector
17 changes: 17 additions & 0 deletions compile.sh
@@ -0,0 +1,17 @@
#!/bin/bash

rm -rf $JENKINS_HOME/plugins/analysis-*
rm -rf $JENKINS_HOME/plugins/checkstyle*
rm -rf $JENKINS_HOME/plugins/dry*
rm -rf $JENKINS_HOME/plugins/findbugs*
rm -rf $JENKINS_HOME/plugins/pmd*
rm -rf $JENKINS_HOME/plugins/tasks*
rm -rf $JENKINS_HOME/plugins/warnings*

mvn clean install || { echo "Build failed"; exit 1; }

cp */target/*.hpi $JENKINS_HOME/plugins
cp findbugs/plugin/target/*.hpi $JENKINS_HOME/plugins



0 comments on commit 4793683

Please sign in to comment.