您如何确保使用特定的果冻文件?我正在尝试为 Jenkins 编写一个具有 3 个功能的插件
- 设置系统配置值。
- 设置后期构建步骤值和
- 设置构建后操作值。
前两个函数运行良好,但是对于后期构建操作,我无法从果冻文件中获取要显示的字段值。前两个函数是用一个 java 文件和一个 jelly 文件实现的,而第三个函数是用另一个 java 文件和另一个 jelly 文件实现的。
任何帮助表示赞赏。
果冻文件内容:
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<!-- This jelly script is used for per-project configuration. See global.jelly for a general discussion about jelly script. -->
<!-- Creates a text field that shows the value of the "name" property. When submitted, it will be passed to the corresponding constructor parameter. -->
<f:entry title="Name" field="name">
<f:textbox />
</f:entry>
</j:jelly>