Heroku找不到常规依赖项

时间:2019-11-20 12:21:20

标签: java spring-boot heroku groovy

在Heroku中部署spring-boot微服务时因缺少公共库而出现错误

  

[错误]无法在项目配置上执行目标:无法解决   项目com.test.config:config:jar:0.0.1-SNAPSHOT的依赖项:   找不到工件 org.codehaus.groovy:groovy-all:jar:2.5.8   在春天的里程碑(https://repo.spring.io/milestone)-> [帮助1]

它与Failed to collect Maven dependencies in Java HelloWorld when deploying to heroku中描述的错误类似,但不影响本地存储库。

你知道为什么他只看春季回购而不看中部吗?

1 个答案:

答案 0 :(得分:0)

好的,我发现问题出在哪里。

必须为

<dependency>
    <groupId>org.codehaus.groovy</groupId>
    <artifactId>groovy-all</artifactId>
    <version>2.5.8</version>
    <type>pom</type>
</dependency>

我的pom错过了这个

<type>pom</type>