The annotation process of Jar doesn't influence distributable element of web.xml.
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@982850
13f79535-47bb-0310-9956-
ffa450edef68
for(WebXml fragment : fragments) {
if (!fragment.isMetadataComplete()) {
WebXml annotations = new WebXml();
+ // no impact on distributable
+ annotations.setDistributable(true);
URL url = fragment.getURL();
processAnnotationsUrl(url, annotations);
Set<WebXml> set = new HashSet<WebXml>();
Allow glob patterns in the <code>jarsToSkip</code> configuration and add
some debug logging to the jar scanner. (rjung)
</update>
+ <fix>
+ <bug>49714</bug>: The annotation process of Jar doesn't influence
+ distributable element of web.xml. (kfujino)
+ </fix>
</changelog>
</subsection>
<subsection name="Coyote">