Which extension point can I use as alternative to 
TransientProjectActionFactory for jobs using the Build Pipeline Plugin?
I have an old plugin that uses:

public class ProjectAction implements Action {
 ...
}

@Extension
public class ProjectActionFactory extends TransientProjectActionFactory {
    @Override
    public Collection<? extends Action> createFor(AbstractProject project) {
        return Arrays.asList(new ProjectAction(project));
    }
}

My jobMain.jelly doesn't works for jobs using Pipeline.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/a3a39902-0bc0-4b3b-92e6-fc1ad8140cbc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to