当前位置: 首页 > 知识库问答 >
问题:

无法更新Maven配置无法计算生成计划:Plugin org.apache.Maven.plugins:maven-resources-plugin:2.5

燕博文
2023-03-14

在eclipse内部,当我做maven->Update项目时,我遇到了以下问题

我尝试了这里提供的解决方案无法计算构建计划:artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.4.3在本地存储库中不可用

并且更新了我的Maven项目,但是我仍然遇到同样的问题,即使我试图在pom.xml文件中添加依赖项,但是没有成功地解决这个问题。甚至我在.m2\repository\org\apache\maven\plugins\maven-resources-plugin\2.5中手动复制了jar

但我还是遇到了同样的问题。

共有1个答案

隆芷阳
2023-03-14

我使用了以下方法来解决它:

>

  • 检查settings.xml是否存在C:\users\< >\.m2 此位置,如果没有

    使用以下内容创建settings.xml:

    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                          https://maven.apache.org/xsd/settings-1.0.0.xsd">
      <localRepository/>
      <interactiveMode/>
      <usePluginRegistry/>
      <offline/>
      <pluginGroups/>
      <servers/>
      <mirrors/>
      <proxies>
         <proxy>
          <id>optional</id>
          <active>true</active>
          <protocol>http</protocol>
          <username>proxyuser</username>
          <password>proxypass</password>
          <host>proxyserver.company.com</host>
          <port>8080</port>
          <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
        </proxy>
        <proxy>
          <id>optional</id>
          <active>true</active>
          <protocol>https</protocol>
          <username>proxyuser</username>
          <password>proxypass</password>
          <host>proxyserver.company.com</host>
          <port>8080</port>
          <nonProxyHosts>localhost</nonProxyHosts>
        </proxy>
      </proxies>
      <profiles/>
      <activeProfiles/>
    </settings>
    

  •  类似资料: