On Mon, Mar 27, 2017 at 11:58 AM, David Brooks <[email protected]> wrote: > my plugin no longer appears in a Freestyle > project under Build Steps because I am not extending Builder nor > implementing SimpleBuildStep anymore. Do you think that I can have this > plugin working under both project types just using Step?
No, `Step` is a Pipeline API. The API for making one extension appear in both freestyle and Pipeline jobs is `SimpleBuildStep`. If you cannot use that API, then you must have both a `Builder` and a `Step`, presumably both delegating to a common utility class for the bulk of the implementation. -- 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/CANfRfr2CCKHW4gm_HLMPWC-68gf6XjEbai%2BXeRcfkOJZ2Qy4iQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
