hrotkogabor commented on issue #4852:
URL: https://github.com/apache/netbeans/issues/4852#issuecomment-1665346739

   By this post:
   
https://stackoverflow.com/questions/52502189/java-11-package-javax-xml-bind-does-not-exist
   adding these dependencies to the project solves the problem:
   
   ```
   <dependency>
     <groupId>javax.xml.bind</groupId>
     <artifactId>jaxb-api</artifactId>
     <version>2.3.0</version>
   </dependency>
   <dependency>
     <groupId>com.sun.xml.bind</groupId>
     <artifactId>jaxb-core</artifactId>
     <version>2.3.0</version>
   </dependency>
   <dependency>
     <groupId>com.sun.xml.bind</groupId>
     <artifactId>jaxb-impl</artifactId>
     <version>2.3.0</version>
   </dependency>
   ```
   
   Maybe the ide should warn the user or solve the problem by this fix.


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