eclipse 中 maven的pom.xml文件发生错误:CoreException: Could not get the value for parameter compilerId for pl

本文介绍了如何解决Maven编译时遇到的插件解析错误,提供了在Eclipse中强制更新Maven项目的步骤。同时,详细阐述了Maven环境的搭建过程,包括下载Maven、配置环境变量、修改配置文件以使用阿里云镜像加速下载以及定制本地仓库的位置,确保Maven在国内能够快速高效地工作。
摘要由CSDN通过智能技术生成

1、 报错信息如下:

Description	Resource	Path	Location	Type
CoreException: Could not get the value for parameter compilerId for plugin execution default-compile: PluginResolutionException: Plugin org.apache.maven.plugins:maven-compiler-plugin:3.1 or one of its dependencies could not be resolved: Failed to collect dependencies at org.apache.maven.plugins:maven-compiler-plugin:jar:3.1 -> org.apache.maven.shared:maven-shared-incremental:jar:1.1 -> org.apache.maven:maven-core:jar:2.2.1 -> org.apache.maven:maven-profile:jar:2.2.1: ArtifactDescriptorException: Failed to read artifact descriptor for org.apache.maven:maven-profile:jar:2.2.1: ArtifactResolutionException: org.apache.maven:maven-profile:pom:2.2.1 failed to transfer from http://maven.aliyun.com/nexus/content/groups/public during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of nexus-aliyun has elapsed or updates are forced. Original error: Could not transfer artifact org.apache.maven:maven-profile:pom:2.2.1 from/to nexus-aliyun (http://maven.aliyun.com/nexus/content/groups/public): The operation was cancelled.	pom.xml	/ssm-xml-demo	line 6	Maven Project Build Lifecycle Mapping Problem

image

在这里插入图片描述在这里插入图片描述


2、解决:在eclipse中强制更新maven的项目:快捷键 alt+f5,然后勾选 Force Update of Snapshots/Releases

image





✿ 补充一下 maven的环境搭建



Maven 环境搭建

一、准备工作:

1、maven下载:官网:https://maven.apache.org/download.cgi

  • 下载完成后解压出来

2、配置环境变量

  • 细节:为什么要单独配置一个M2_HOME 的变量:方便后续学习
    • 后续使用的自动依赖的系统,比如SpringBoot、SpringCloud,它会引用M2_HOME 这个地址。
■ 添加系统变量:

□ M2_HOME maven目录下的bin目录

□ MAVEN_HOME maven的目录

□ 在系统的path中配置 %MAVEN_HOME%\bin

■ 验证maven是否配置成功:查看maven版本的命令 mvn -version

3、修改maven 配置文件的镜像为 阿里云镜像

  • 配置文件位置:maven根目录/conf/settings.xml 找到镜像元素mirrors

  • 镜像:mirrors:

    • 作用:加速下载
    • 默认是使用国外的镜像,国内建议使用阿里云镜像加速下载
       <!-- 添加之前,先把原来的镜像全注释掉 -->
      <!-- 配置方式1 -->
       <mirror>
            <id>nexus-aliyun</id>
         <mirrorOf>*,!jeecg,!jeecg-snapshots</mirrorOf>
            <name>Nexus aliyun</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public</url>
        </mirror>
    
  <!-- 配置方式2 -->
	<mirror>
        <id>nexus-aliyun</id>
     <mirrorOf>central</mirrorOf>
        <name>Nexus aliyun</name>
        <url>http://maven.aliyun.com/nexus/content/groups/public</url>
    </mirror>

4、修改maven 配置文件的本地仓库位置

  • 修改本地仓库位置为:maven 根目录下 自己手动建立的 maven-repo
  • 配置文件位置:maven根目录/conf/settings.xml 找到 localRepository元素
  <localRepository>E:\environment\mavenEvironment\apache-maven-3.8.2\maven-repo</localRepository>
评论 33
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

伟庭大师兄

你的鼓励是我最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值