You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/main/docs/ant-task.html
+15-1
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,20 @@ <h2>Parameters</h2>
73
73
<td>Name of a <ahref="bundled-signatures.html">built-in signatures</a> file.</td>
74
74
</tr>
75
75
76
+
<tr>
77
+
<td>signaturesWithSeveritySuppress</td>
78
+
<td><code>String</code></td>
79
+
<td></td>
80
+
<td>A forbidden API signature for which violations should not be reported at all (i.e. neither fail the build nor appear in the logs). This takes precedence over<code>failOnViolation</code> and <code>signaturesWithSeverityWarn</code>.</td>
81
+
</tr>
82
+
83
+
<tr>
84
+
<td>signaturesWithSeverityWarn</td>
85
+
<td><code>String</code></td>
86
+
<td></td>
87
+
<td>A forbidden API signature for which violations should be reported as warnings (i.e. not fail the build). This takes precedence over<code>failOnViolation</code>.</td>
88
+
</tr>
89
+
76
90
<tr>
77
91
<td>classpath</td>
78
92
<td><code>Path</code></td>
@@ -184,7 +198,7 @@ <h2>Parameters specified as nested elements</h2>
184
198
185
199
<p>This task supports all <ahref="https://ant.apache.org/manual/Types/resources.html">Ant resource</a> types
and uses all class files from them. It automatically adds an implcit filter to file names ending in <code>'.class'</code>,
201
+
and uses all class files from them. It automatically adds an implicit filter to file names ending in <code>'.class'</code>,
188
202
so you don't need to add this as include attribute to those collections.</p>
189
203
190
204
<p>You can also pass one or multiple <code>classpath</code> elements to form a classpath. Ideally use the same configuration like the <code>javac</code> task.</p>
/** Parses and adds a class from the given stream to the list of classes to check. Closes the stream when parsed (on Exception, too)! Does not log anything. */
0 commit comments