-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathconfiguration.jelly
More file actions
79 lines (64 loc) · 2.2 KB
/
configuration.jelly
File metadata and controls
79 lines (64 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?jelly escape-by-default='true'?>
<j:jelly xmlns:st="jelly:stapler" xmlns:j="jelly:core" xmlns:p="/prism" xmlns:c="/controls" xmlns:s="/forensics" xmlns:f="/lib/form">
<st:documentation>
Provides the configuration for the coverage recorder and step.
</st:documentation>
<f:entry title="${%parser.title}">
<div id="tools">
<f:repeatableProperty minimum="1" field="tools" add="${%parser.add}">
<f:entry title="">
<div align="right">
<f:repeatableDeleteButton/>
</div>
</f:entry>
</f:repeatableProperty>
</div>
</f:entry>
<f:entry title="${%qualityGates.title}" description="${%qualityGates.description}">
<div id="qualityGates">
<f:repeatableProperty field="qualityGates" add="${%qualityGates.add}">
<f:entry title="">
<div align="right">
<f:repeatableDeleteButton/>
</div>
</f:entry>
</f:repeatableProperty>
</div>
</f:entry>
<f:advanced>
<f:entry title="${%title.id}" field="id">
<f:textbox/>
</f:entry>
<f:entry title="${%title.name}" field="name">
<f:textbox/>
</f:entry>
<f:entry field="ignoreParsingErrors">
<f:checkbox title="${%title.ignoreParsingErrors}"/>
</f:entry>
<f:entry field="failOnError">
<f:checkbox title="${%failOnError.title}"/>
</f:entry>
<f:entry field="enabledForFailure">
<f:checkbox title="${%title.enabledForFailure}"/>
</f:entry>
<f:entry field="skipSymbolicLinks">
<f:checkbox title="${%title.skipSymbolicLinks}"/>
</f:entry>
<c:hr title="${%SCM Options}"/>
<f:entry field="skipPublishingChecks">
<f:checkbox title="${%skipPublishingChecks.title}"/>
</f:entry>
<f:entry title="${%checksName.title}" field="checksName">
<f:textbox />
</f:entry>
<f:entry title="${%checksAnnotationScope.title}" field="checksAnnotationScope">
<f:select default="MODIFIED_LINES"/>
</f:entry>
<s:scm/>
<c:hr title="${%Source Code Processing Options}"/>
<p:sourceConfig/>
<f:entry title="${%sourceCodeRetention.title}" field="sourceCodeRetention">
<f:select default="LAST_BUILD"/>
</f:entry>
</f:advanced>
</j:jelly>