maven repository and dependencies download -
i've used standard maven command mvn clean install
, according logs (in same console window) dependencies loaded , artifacts installed dedicated directory maven repository p:\.m2\repository
. maven build process succeeded. i'm using maven 2.2.1
here problem. repository directory empty. i'm missing?
thanks.
some reasons:
- someone deleted folder (or it's content)
- maven installed files in different place
i suggest run mvn
again option -x
. running mvn clean -x
should enough see paths uses locate dependencies (install
download many more files need see one).
note: p:\
sounds network drive. if home folder (i.e. not shared other people), isn't idea since cause lot of network traffic , make builds slow , brittle (in case of network problems).
Comments
Post a Comment