提交 658b35c6 编写于 作者: P petehayes

HUDSON-2777 Added code to go through build wrappers and adding project actions

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@14038 71c3de6d-444a-0410-be80-ed276b4c234a
上级 006cdddb
......@@ -161,6 +161,13 @@ public final class MavenModuleSet extends AbstractMavenProject<MavenModuleSet,Ma
if(a!=null)
transientActions.add(a);
}
if (buildWrappers!=null)
for (BuildWrapper step : buildWrappers) {
Action a = step.getProjectAction(this);
if(a!=null)
transientActions.add(a);
}
}
protected void addTransientActionsFromBuild(MavenModuleSetBuild build, Set<Class> added) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册