-
Improvement
-
Resolution: Fixed
-
Major
For NetBeans task list integration I am making use of https://wiki.jenkins-ci.org/display/JENKINS/Static+Code+Analysis+Plug-ins#StaticCodeAnalysisPlug-ins-RemoteAPI which works but has the performance issue that since the IDE does not know in advance which (if any) analysis plugins are actually in use for a given job, it has to go through a list of known plugin IDs and access the remote API for each one, skipping over ones that give a 404.
It would be nicer if e.g. $build/analysisPlugins/api/xml were bound to something that simply enumerated the plugin IDs. (Alternately, this API object could directly list all the results under e.g. <findbugsResult>.)
[JENKINS-10487] Remote API call to get list of enabled plugins for a job
Workflow | Original: JNJira [ 140680 ] | New: JNJira + In-Review [ 175327 ] |
Labels | New: analysis-core-2.0 |
Resolution | New: Won't Fix [ 2 ] | |
Status | Original: Open [ 1 ] | New: Resolved [ 5 ] |
I think the latter one is already available when using the analysis-collector plug-in that shows the aggregation of all plug-ins:
http://www.faktorzehn.org:8081/view/Jenkins/job/Jenkins%20Analysis%20Plug-ins/300/analysisResult/api/xml
Or do you need the individual results?