4
I don’t know if what I’m going to ask is simple or complex, but it turns out that I started using Maven about two weeks ago in college, on a somewhat complex project of the Java EE discipline. I installed Maven, everything straight on my laptop and personal computer at home, everything is ok, but in my work the internet is quite restricted. After downloading the Github project he won’t let Maven download the dependency and says that it couldn’t create Workspace. Is there any way I can export the laptop dependencies and take them to my work?
that’s right! Just a question, when I run build dependency:go-offline, does Maven only try to cache or does it stop downloading? After saving the folder . m2 to put on the flash drive, should I activate again?!
– João Neto
@Joãoneto You are confusing "offline mode" with "go-offline". "go-offline" forces the download of dependencies. Offline mode prevents Maven from accessing the internet.
– utluiz
Ahh, now I get @utluiz. Thank you very much, thanks! = DD
– João Neto