我正在使用 Sping Boot 2.7.5 和包含的依赖项 Flyway core 7.15.0 在Psotgresql-9.6上执行迁移脚本,但IntelliJ-Idea外部依赖项显示 Flyway core dependency 7.15.0 和 Flyway core dependency 8.5.3,我从未在任何 gradle.build 文件中提到过,我如何排除此情况
迁移模块gradle.build
dependencies {
implementation("org.springframework.boot:spring-boot-starter-data-cassandra")
implementation("org.cognitor.cassandra:cassandra-migration-spring-boot-starter:2.5.0_v4")
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation ('org.springframework.boot:spring-boot-starter-web')
implementation 'org.flywaydb:flyway-core:7.15.0'
}
外部依赖关系视图x1c 0d1x
1条答案
按热度按时间vbkedwbf1#
这可能是一个传递依赖关系。例如,如果你有一个多模块的项目,它可能是其中一个模块的依赖项。IDEA在你的项目中提供了很多analyze dependencies的选项,看看其中是否有对你有帮助的。如果您正在查找原始Gradle输出,也可以从命令提示符运行“gradle依赖项”。
如果您特别希望排除依赖项-请参阅Gradle Documentation。