mbien commented on issue #6223: URL: https://github.com/apache/netbeans/issues/6223#issuecomment-1653966463
@albilu thanks for the demo. I am not 100% convinced that this is a problem though. Yes the compilation step will fail but before attempting to compile, maven will download all dependencies which aren't there yet. That is also the reason why you can import the class right after you built - since it can be resolved. what you essentially want is something like: `mvn dependency:go-offline` which will download everything so that subsequent builds can be offline. or via UI:  The fact that reloading the pom is downloading dependencies is an implementation detail. NetBeans is going to do that in a non-standard way - it is always better to let maven handle the build. -- 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
