matthiasblaesing commented on issue #8454:
URL: https://github.com/apache/netbeans/issues/8454#issuecomment-2832537537

   You are facing to different challenges:
   
   - JDK 8 dropped the JavaEE libraries from the JDK (JaxWS, JAXB, ...)
   - Oracle dropped JavaEE and it transitioned to the Apache Foundation. For 
reasons (lawyers?) the ASF had to change the namespaces from javax.* to 
jakarta.*
   
   If you want to go only to Java 11 (i.e. replace the libraries dropped from 
the JDK), you are looking for other artifacts. For JaxWS and JAXB you are 
looking for the 2.X versions (the maven jakarta artifacts in version 2.X are 
still in the javax namespace).
   
   This might be a good starting point:
   
   https://central.sonatype.com/artifact/com.sun.xml.ws/jaxws-rt/2.3.7/overview
   
   Have a look at the dependency list too:
   
   
https://central.sonatype.com/artifact/com.sun.xml.ws/jaxws-rt/2.3.7/dependencies
   
   This can buy you time, but not much. JavaEE is dead, JakartaEE is the future.
   
   @work we transitioned all projects from JavaEE to JakartaEE and it is mostly 
search'n'replace for the package and xml namespaces. You would also need to 
update the project setup. As demonstrated that is not that hard, once you did 
the first complete transition.


-- 
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: notifications-unsubscr...@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org
For additional commands, e-mail: notifications-h...@netbeans.apache.org

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

Reply via email to