On Mon, Mar 27, 2017 at 11:58 AM, David Brooks <
dbr...@intrepid.io> 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.