An internal error occurred during: "Updating Maven Project

前端 未结 10 1020
太阳男子
太阳男子 2021-01-29 23:39

when i convert to maven project the error is :

> An internal error occurred during: \"Updating Maven Project\".
> Unsupported IClasspathEntry kind=4
         


        
10条回答
  •  失恋的感觉
    2021-01-30 00:04

    As posted here, the problem is the command line eclipse project generation. So, do not use mvn eclipse:eclipse instead do:

    1. delete your project from eclipse (without deleting it from your file system)
    2. do mvn eclipse:clean in your command line inside your project folder
    3. delete .classpath .project .settings in your project folder (if they still exist after doing 2.)
    4. in eclipse import your project as an "Existing Maven Projects" and it should work flawlessly

提交回复
热议问题