错误:Maven Resources Compiler: Maven project configuration required for module ‘xxx‘ isn‘t available.

博客来源:

Git上项目在其他电脑上拉去的时候,出现这个问题,

Error:Maven Resources Compiler: Maven project configuration required for module 'XX(项目名)' isn't available. Compilation of Maven projects is supported only if external build is started from an IDE.
翻译后:
        错误:Maven资源编译器:模块“项目名”所需的Maven项目配置不可用。只有从IDE启动外部构建时,才支持Maven项目的编译。

参考网上方法是 重新build一下,可能是IDEA没有识别问题,我的好像不是,我的问题是没有识别出maven项目

  

不识别Maven项目办法

1、项目右键,Add Framework Support...

选择相应的环境

想必你也发现了吧,我这里没有Maven,没有办法添加

2、接下来,打开pom文件,右键

能找到,转换成Maven的选项,我这里转换过了就没有图可放,

转换完成后即可解决
————————————————
版权声明:本文为CSDN博主「技匠而已」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/L_fly_J/article/details/114282509

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Maven is a popular build automation tool used primarily for Java projects. It uses a plugin-based architecture to provide various functionalities during the build process. The `maven-compiler-plugin` is one of the core plugins in Maven, responsible for compiling Java source code. The `org.apache.maven.plugins:maven-compiler-plugin:3.8.1` is a specific version of the `maven-compiler-plugin` that you can use in your Maven project. It provides configuration options for the Java compiler, allowing you to specify the source and target versions of Java, enable or disable certain compiler features, and more. Here are a few key features and configurations provided by the `maven-compiler-plugin`: 1. Source and target versions: You can specify the version of Java source code your project is written in (`source`) and the version of Java bytecode to be generated (`target`). This allows you to use language features specific to a particular Java version while ensuring compatibility with the target environment. 2. Compiler options: The plugin allows you to configure various compiler options such as encoding, debugging information, and compiler optimizations. 3. Compiler plugin executions: You can define multiple executions of the `maven-compiler-plugin`, each with its own configuration. This is useful when you have different sets of Java source code that need to be compiled with different configurations. 4. Compiler plugin dependencies: The plugin can also manage dependencies required during the compilation process, such as annotation processors or additional libraries. To use the `maven-compiler-plugin`, you need to include it in your project's `pom.xml` file within the `<build>` section. Here's an example configuration: ```xml <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> ``` This configuration sets the source and target versions to Java 1.8.

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值