earldouglas opened a new pull request, #991:
URL: https://github.com/apache/tomcat/pull/991

   Combining the licenses creates invalid URLs:
   
   ```
   <licenses>
     <license>
       <url>
         http://www.apache.org/licenses/LICENSE-2.0.txt and
         http://www.opensource.org/licenses/cddl1.txt
       </url>
     </license>
   </licenses>
   ```
   
   Compared to using separate entries for each license:
   
   ```
   <licenses>
     <license>
       <url>
         http://www.apache.org/licenses/LICENSE-2.0.txt
       </url>
     </license>
     <license>
       <url>
         http://www.opensource.org/licenses/cddl1.txt
       </url>
     </license>
   </licenses>
   ```
   
   This breaks tools that validate the URLs, including BOM standards such as 
CycloneDX:
   
   ```
   license.url: does not match the iri-reference pattern must be a valid RFC 
3987 IRI-reference
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to