matthiasblaesing opened a new pull request, #5160:
URL: https://github.com/apache/netbeans/pull/5160

   The tomcat5 module used the internal classes:
   
   com.sun.org.apache.xml.internal.serialize.OutputFormat
   com.sun.org.apache.xml.internal.serialize.XMLSerializer
   
   to modify the tomcat configuration. For this to work the usage of the
   javac release option had to be disabled as only exported classes are
   then accessible. This is done by specifying bootclasspath.prepend.
   
   Having this masked a different issue which rendered the tomcat module
   JDK 9+. The method:
   
   URLEncoder#encode(String s, Charset enc)
   
   was used, which was introduced with JDK9. The alternative
   
   URLEncoder#encode(String s, String enc)
   
   can be used as a drop-in replacement.
   
   Closes: https://github.com/apache/netbeans/issues/5134
   Closes: https://github.com/apache/netbeans/issues/5154


-- 
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]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to