Maven downloads have .lastUpdated as extension

前端 未结 7 948
情歌与酒
情歌与酒 2020-11-29 02:00

I have an Eclipse setup with m2eclipse and subversive. I have imported a maven2 project from svn. But I get the error message that a whole bunch of artifacts are missing (fo

7条回答
  •  -上瘾入骨i
    2020-11-29 02:38

    Open your terminal, navigate to your Eclipse's project directory and run:

    mvn install
    

    If mvn install doesn't update your dependencies, then call it with a switch to force update:

    mvn install -U
    

    This is a much safer approach compared to tampering with maven files as you delete ".lastUpdated".

提交回复
热议问题