1

I have a project in IntelliJ that uses Maven. I need to move the project to a PC that will have IntelliJ installed but doesn’t have external internet access due to corporate firewall rules.

What is the best way to grab the project and all of its dependencies so that when I set the project up in IntelliJ on the target machine IntelliJ will still see the projects dependencies.

SheppardDigital
  • 3,165
  • 8
  • 44
  • 74

1 Answers1

2

You will have to export the project and then zip the local maven repository (see here for reference https://www.mkyong.com/maven/where-is-maven-local-repository/) on the machine. If you transfer both and set maven to run offline it should work (How do I configure Maven for offline development?).

fl0w
  • 3,593
  • 30
  • 34