如何在Jenkins-JOB-DSL中使用Invoke Depenendecy-check?
我只看到发布OWASP依赖项检查结果的示例。Https://jenkinsci.github.io/job-dsl-plugin/#method/javaposse.jobdsl.dsl.helpers.publisher.PublisherContext.dependencyCheck
提前谢谢!
t9aqgxwy1#
我自己想出来的。
dependencyCheck { odcInstallation('710') additionalArguments('--proxyserver x.x.x.x --proxyport 3128') }
如果API查看器没有列出对某个插件的支持,可以使用动态DSL来填补空白。
使用嵌入式API查看器探索可用的DSL方法。如果您的Jenkins示例在http://localhost:8080,上运行,那么可以在http://localhost:8080/plugin/job-dsl/api-viewer/index.html.上打开API查看器
参考文献:https://github.com/jenkinsci/job-dsl-plugin/wiki/Dynamic-DSL
1条答案
按热度按时间t9aqgxwy1#
我自己想出来的。
如果API查看器没有列出对某个插件的支持,可以使用动态DSL来填补空白。
使用嵌入式API查看器探索可用的DSL方法。如果您的Jenkins示例在http://localhost:8080,上运行,那么可以在http://localhost:8080/plugin/job-dsl/api-viewer/index.html.上打开API查看器
参考文献:https://github.com/jenkinsci/job-dsl-plugin/wiki/Dynamic-DSL