-
Improvement
-
Resolution: Fixed
-
Minor
-
None
Currently only modules which are disabled themselves - i.e. are no longer part of the moduleset - are excluded.
We should also exclude modules which are not buildable - i.e. whose MavenModuleSets are disabled.
See MavenModule#buildDependencyGraph()
for (MavenModule m : Hudson.getInstance().getAllItems(MavenModule.class)) {
if(m.isDisabled()) continue;
should be replaced with
for (MavenModule m : Hudson.getInstance().getAllItems(MavenModule.class)) {
if(!m.isBuildable()) continue;
[JENKINS-10367] When building the dependency graph, maven modules which are not buildable should be ignored
Assignee | New: kutzi [ kutzi ] |
Resolution | New: Fixed [ 1 ] | |
Status | Original: Open [ 1 ] | New: Resolved [ 5 ] |
Added a pull request https://github.com/jenkinsci/jenkins/pull/200