如何确保使用特定的果冻文件?我正在尝试为Jenkins编写一个插件,具有3个功能
前两个函数工作正常,但是对于post build操作,我无法从jelly文件中显示字段值。 前两个函数用一个java文件和一个果冻文件实现,而第三个函数用另一个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>