現在、Jenkins ジョブで利用可能なすべてのビルド ステップのリストを取得する方法を探しています。
ちょっと好き:
FreeStyleProject newJob = Jenkins.getInstance().createProject( FreeStyleProject.class, this.jobName );
// TODO: Get the available build steps of the created job, following is pseudocode
newJob.getAvailableBuilders();
前もって感謝します!