Reputation: 3
My friend and I are working on a project using Maven on Windows. I want to run the same project on Mac. I do not know where to place the .m2 folder that I copied from Windows on Mac.
I put the .m2 into /Users/.m2
. When I run the mvn clean install
from the folder with a pom file I get:
Could not resolve dependencies for project ...
Upvotes: 0
Views: 1263
Reputation: 97517
First copying the cache is a bad idea...apart from that the cache on Mac is under the appropriate user like /Users/USERNAME/.m2/
...Just transfer the project (I hope you are working with a version control system like Git/SVN etc.) and just try to build it on the Mac on plain command line mvn clean package
. The downloads will be done automatically.
Upvotes: 1