遇到这个问题一般是:

1.无法下载该插件或者是无法下载依赖的jar包

2.之前下载的jar包是不完整的.(从本地maven仓库中删除该依赖的文件重新下载即可)

这时候需要留心插件下载地址是否正确,我配置是从私有仓库下载,但是有些是没有的,需要从阿里的maven镜像,或者是Maven中心仓库才能下载到依赖.

找到本地maven的settings.xml,配置mirrors如下:

     <mirror>

            <id>alimaven</id>

            <mirrorOf>central</mirrorOf>

            <name>aliyun maven</name>

            <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>

     </mirror>

      <!-- 中央仓库1 -->

        <mirror>

            <id>repo1</id>

            <mirrorOf>central</mirrorOf>

            <name>Human Readable Name for this Mirror.</name>

            <url>http://repo1.maven.org/maven2/</url>

        </mirror>


        <!-- 中央仓库2 -->

        <mirror>

            <id>repo2</id>

            <mirrorOf>central</mirrorOf>

            <name>Human Readable Name for this Mirror.</name>

            <url>http://repo2.maven.org/maven2/</url>

        </mirror>

     <mirror>

           <id>ibiblio.org</id>

           <name>ibiblio Mirror of http://repo1.maven.org/maven2/</name>

           <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>

           <mirrorOf>central</mirrorOf>

           <!-- United States, North Carolina -->

     </mirror>

     <mirror> 

         <id>jboss-public-repository-group</id> 

         <mirrorOf>central</mirrorOf> 

         <name>JBoss Public Repository Group</name> 

         <url>http://repository.jboss.org/nexus/content/groups/public</url> 

     </mirror>  

    <mirror>

        <id>osc</id>

        <mirrorOf>*</mirrorOf>

        <url>

    </mirror>

重新build一下工程,或者是maven reimport