How to convert back maven project to java web project

前端 未结 3 1347
执念已碎
执念已碎 2021-01-12 18:30

I have converted my java web project to maven project using m2e plugin in eclipse. Now i need to convert it back to java w

相关标签:
3条回答
  • 2021-01-12 18:57

    Please try the following:

    1. Open context menu on the maven project
    2. Select "Maven" -> "Disable Maven Nature"

    Hope that helps.

    0 讨论(0)
  • 2021-01-12 19:04

    I had the same problem when attempting to use Maven with EFXclipse. I wanted to revert, but faced all kinds of unknown errors after following the answer from @DirkNM

    So, I just created a new project of my particular type (be it an EFXclipse project, web, java, etc.)

    And then re-added all source files and project dependencies to build-path manually.

    Sounds harder, but was way easier... considering I didn't have to go looking for all kinds of random settings not reverted back using the answer from @DirkNM

    0 讨论(0)
  • 2021-01-12 19:14

    Use this maven command

    mvn eclipse:eclipse
    

    http://mytechnologythought.blogspot.com/2017/09/convert-maven-project-to-eclipse.html

    0 讨论(0)
提交回复
热议问题