Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的果冻脚本中需要此代码用于电子邮件分机:
jenkins.model.Jenkins.instance.getItem("Job_name").getBuilds()
是否可以在不更改插件代码的情况下在脚本中使用?
有一种方法可以通过使用 jelly:core 标签来访问 Hudson 实例:
<j:invokeStatic className="hudson.model.Hudson" method="getInstance" var="hudsonInstance"/>
从这里开始,只需继续使用 jelly:invoke 等,即可访问您需要的实例方法。在这里你会找到 jelly:core taglib 文档:
http://commons.apache.org/proper/commons-jelly/tags.html