maven-dependency-plugin (goals “copy-dependencies”, “unpack”) is not supported by m2e

前端 未结 8 958
一个人的身影
一个人的身影 2020-12-02 03:59

I have a fairly simple Maven project:


    
        ...
    
         


        
相关标签:
8条回答
  • 2020-12-02 05:02

    To make it work, instead of ignoring it, you can install the m2e connector for the maven-dependency-plugin:
    https://github.com/ianbrandt/m2e-maven-dependency-plugin

    Here is how you would do it in Eclipse:

    1. go to Window/Preferences/Maven/Discovery/
    2. enter Catalog URL: http://download.eclipse.org/technology/m2e/discovery/directory-1.4.xml
    3. click Open Catalog
    4. choose the m2e-maven-dependency-plugin
    5. enjoy
    0 讨论(0)
  • 2020-12-02 05:05

    If copy-dependencies, unpack, pack, etc., are important for your project you shouldn't ignore it. You have to enclose your <plugins> in <pluginManagement> tested with Eclipse Indigo SR1, maven 2.2.1

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