idea中maven执行install报错_关于maven 执行install 报错问题

错误1

[INFO] ------------------------------------------------------------------------

[INFO] BUILD FAILURE

[INFO] ------------------------------------------------------------------------

[INFO] Total time: 32:32 min

[INFO] Finished at: 2018-09-13T16:08:48+08:00

[INFO] ------------------------------------------------------------------------

[ERROR] Failed to execute goal on project api: Could not resolve dependencies for project com.jhr:api:jar:1.0-SNAPSHOT: Could not transfer artifact org.springframework:spring-beans:jar:3.2.4.RELEASE from/to central (https://repo.maven.apache.org/maven2): GET request of: org/springframework/spring-beans/3.2.4.RELEASE/spring-beans-3.2.4.RELEASE.jar from central failed: Read timed out -> [Help 1]

[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.

[ERROR] Re-run Maven using the -X switch to enable full debug logging.

[ERROR] For more information about the errors and possible solutions, please read the following articles:

[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

解决思路:

还不行,重启一下idea,再clean - install

错误2

[INFO] ------------------------------------------------------------------------

[ERROR] Failed to execute goal on project client: Could not resolve dependencies for project com.jhr:client:jar:1.0-SNAPSHOT: Could not find artifact com.jhr:dubbotest:jar:1.0-SNAPSHOT -> [Help 1]

[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.

[ERROR] Re-run Maven using the -X switch to enable full debug logging.

[ERROR] For more information about the errors and possible solutions, please read the following articles:

[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

[ERROR] After correcting the problems, you can resume the build with the command

出错情况:

在对parent工程(最外面的哪个)pom 先clean,后install时,发现parent的pom依赖 子模块,install parent的时候出现 找不到 子模块;而子模块进行install时出现错误,无法执行;

原因:子模块与夫模块 的dependency出现错误

解决思路:重新检查各个模块的dependency是否出现错误,并修改

例如: 我的项目的相关依赖关系为

服务者与消费者 都依赖于 api模块,但出错的原因变成:服务者与消费者 都依赖于父模块,而父模块进行install时需先将子模块先进行install;所以出现死循环。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
你好!关于你的问题,当使用Maven进行项目构建时,如果报错"Unable to find main class",通常是由于没有正确配置pom.xml文件或者项目的结构问题导致的。以下是一些可能的解决方案: 1. 确保pom.xml正确配置了mainClass。在`<build>`标签下添加以下内容: ```xml <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>com.example.MainClass</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> ``` 将`com.example.MainClass`替换为你的主类名称。 2. 确保项目的源代码结构符合Maven的默认约定。Maven默认将源代码放置在`src/main/java`目录下,确保你的主类位于正确的位置。如果你的项目结构不同,可以在pom.xml进行配置。例如,如果你的主类位于`src/main/com/example/MainClass.java`,需要在pom.xml添加以下内容: ```xml <build> <sourceDirectory>src/main/</sourceDirectory> </build> ``` 3. 如果你使用的是可执行的JAR包,确保在pom.xml正确配置了maven-shade-plugin插件。在`<plugins>`标签下添加以下内容: ```xml <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.example.MainClass</mainClass> </transformer> </transformers> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> ``` 同样,将`com.example.MainClass`替换为你的主类名称。 4. 如果上述方法都没有解决问题,可能是由于IDE的缓存或构建配置问题。可以尝试清理项目并重新构建。如果使用的是IntelliJ IDEA等IDE,可以尝试重新导入项目或者重建Maven项目。 希望这些解决方案能够帮助你解决问题!如果还有其他问题,请继续提问。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值