Use better names for test failure reports
diff --git a/log4j/Jenkinsfile b/log4j/Jenkinsfile
index 549f39c..83c5015 100644
--- a/log4j/Jenkinsfile
+++ b/log4j/Jenkinsfile
@@ -62,9 +62,8 @@
                         // TODO: would be nice to be able to include checkstyle, cpd, pmd, and spotbugs,
                         //       but current site build takes too long
                         recordIssues sourceCodeEncoding: 'UTF-8',
-                                referenceJobName: 'log4j/master',
                                 tools: [
-                                    junitParser(id: 'LinuxTests', pattern: '**/target/*-reports/TEST-*.xml', reportEncoding: 'UTF-8'),
+                                    junitParser(id: 'linux', name: 'Linux Tests', pattern: '**/target/*-reports/TEST-*.xml', reportEncoding: 'UTF-8'),
                                     mavenConsole(),
                                     errorProne(),
                                     java(),
@@ -83,8 +82,7 @@
                         bat 'if exist %userprofile%\\.embedmongo\\ rd /s /q %userprofile%\\.embedmongo'
                         mvn '-Dmaven.test.failure.ignore=true verify'
                         recordIssues sourceCodeEncoding: 'UTF-8',
-                                referenceJobName: 'log4j/master',
-                                tools: [junitParser(id: 'WindowsTests', pattern: '**/target/*-reports/TEST-*.xml', reportEncoding: 'UTF-8')]
+                                tools: [junitParser(id: 'windows', name: 'Windows Tests', pattern: '**/target/*-reports/TEST-*.xml', reportEncoding: 'UTF-8')]
                     }
                 }
             }