试图从maven中拖出这个依赖项,但是得到了错误,这可能是什么问题?无法解析com.palantir.docker.compose:docker-compose-rule-junit4:0.32.0
<dependency>
<groupId>com.palantir.docker.compose</groupId>
<artifactId>docker-compose-rule-junit4</artifactId>
<version>0.32.0</version>
</dependency>发布于 2020-04-13 17:44:42
这个包在maven central repo https://repo.maven.apache.org/maven2中不存在,所以我不得不添加一个额外的包。
<repositories>
<repository>
<id>Palantir</id>
<url>https://dl.bintray.com/palantir/releases/</url>
</repository>
</repositories>https://stackoverflow.com/questions/61141285
复制相似问题