grails-flyway
プラグインの推移的な依存関係に問題があります。 org.grails.plugins:grails-flyway:0.2.1
は、org.flywaydb:flyway-core:4.0.1
への依存関係を宣言します。プラグインをGrails3.1.6プロジェクトに含めると、GradleはFlywayをバージョン3.2.1にダウングレードします。
+--- org.grails.plugins:grails-flyway:0.2.1
| \--- org.flywaydb:flyway-core:4.0.1 -> 3.2.1
私のGradleビルドファイルは次のようになります
buildscript {
ext {
grailsVersion = project.grailsVersion
}
repositories {
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:${assetPipelinePluginVersion}"
classpath "org.grails.plugins:hibernate5:5.0.5"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.12.0'
}
}
version "0.40.15"
group "zsc.supporter"
apply plugin: "war"
apply plugin: "org.grails.grails-web"
apply plugin: "org.grails.grails-gsp"
apply plugin: "org.grails.grails-doc"
apply plugin: "asset-pipeline"
apply plugin: 'com.github.ben-manes.versions'
ext {
grailsVersion = project.grailsVersion
gradleWrapperVersion = project.gradleWrapperVersion
}
repositories {
maven { url "https://repo.grails.org/grails/core" }
maven { url "https://dl.bintray.com/saw303/plugins" }
}
dependencyManagement {
imports {
mavenBom "org.grails:grails-bom:$grailsVersion"
}
applyMavenExclusions false
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-logging"
compile "org.springframework.boot:spring-boot-autoconfigure"
compile "org.grails:grails-core"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-starter-Tomcat"
compile "org.grails:grails-dependencies"
compile "org.grails:grails-web-boot"
compile "org.grails.plugins:cache"
compile "org.grails.plugins:scaffolding"
compile "org.grails.plugins:hibernate4"
compile "org.hibernate:hibernate-ehcache"
console "org.grails:grails-console"
profile "org.grails.profiles:web:3.1.6"
runtime "com.bertramlabs.plugins:asset-pipeline-grails:${assetPipelinePluginVersion}"
runtime "com.h2database:h2"
testCompile "org.grails:grails-plugin-testing"
testCompile "org.grails.plugins:geb"
testRuntime "org.seleniumhq.Selenium:selenium-htmlunit-driver:2.52.0"
testRuntime "net.sourceforge.htmlunit:htmlunit:2.21"
compile "org.grails.plugins:spring-security-core:3.0.4"
compile "org.grails.plugins:quartz:2.0.8"
compile "org.grails.plugins:mail:2.0.0.RC4"
compile "eu.bitwalker:UserAgentUtils:1.18"
compile 'org.mnode.ical4j:ical4j:1.0.7'
compile 'org.grails.plugins:browser-detection:3.1.0'
compile "com.googlecode.libphonenumber:libphonenumber:7.3.1"
runtime 'org.grails.plugins:grails-flyway:0.2.1'
testCompile "org.grails.plugins:grails-wizer:0.3"
testCompile 'org.grails:grails-datastore-test-support:5.0.5.RELEASE'
runtime 'mysql:mysql-connector-Java:5.1.29'
}
task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
assets {
minifyJs = true
minifyCss = true
}
現在、Gradleが推移的な依存関係をダウングレードする理由がわかりません。誰かがこれを提供できますか?
flyway-core:4.0.1
にbuild.gradle
依存関係を強制できることは承知していますが、ダウングレードの原因を理解したいと思います。
UPDATE-1
gradle dependencies | grep flyway
を実行すると、次の出力が得られます。
+--- org.grails.plugins:grails-flyway:0.2.1
| \--- org.flywaydb:flyway-core:4.0.1 -> 3.2.1
+--- org.grails.plugins:grails-flyway:0.2.1
| \--- org.flywaydb:flyway-core:4.0.1 -> 3.2.1
+--- org.grails.plugins:grails-flyway:0.2.1
| \--- org.flywaydb:flyway-core:4.0.1 -> 3.2.1
+--- org.grails.plugins:grails-flyway:0.2.1
| \--- org.flywaydb:flyway-core:4.0.1 -> 3.2.1
Pastebin で完全な出力を見つけてください。 grails-flyway
プラグインとそのpom.xmlは、 Bintray にあります。
UPDATE-2
Gradles Reference に従って、Gradleにorg.flywaydb:flyway-core:4.0.1
を強制的に使用させようとしました。
configurations.all {
resolutionStrategy.force 'org.flywaydb:flyway-core:4.0.1'
}
それは問題に影響を与えません。依存関係ツリーは、引き続きバージョン3.2.1のflyway-core
を使用します。
+--- org.grails.plugins:grails-flyway:0.2.1
| \--- org.flywaydb:flyway-core:4.0.1 -> 3.2.1
UPDATE-3
Gradles dependencyInsight
コマンド
gradle dependencyInsight --dependency flyway-core --configuration runtime
結果は
:dependencyInsight
org.flywaydb:flyway-core:3.2.1 (selected by rule)
org.flywaydb:flyway-core:4.0.1 -> 3.2.1
\--- org.grails.plugins:grails-flyway:0.2.1
\--- runtime
(selected by rule)
とはどういう意味ですか?
「解決策」-またはそれを回避する方法
Gradleがflyway-core:3.2.1
の代わりにflyway-core:4.0.1
を使用するルールを見つけることができませんでした。しかし、私は問題を回避する方法を見つけました。
Gradle runtime
の解決戦略を変更するために、build.gradle
に以下を追加しました。
configurations.runtime.resolutionStrategy {
eachDependency { DependencyResolveDetails det ->
if (det.requested.name == 'flyway-core' && det.requested.group == 'org.flywaydb') {
det.useVersion(det.requested.version)
}
}
}
それを引き起こしているのはspring-boot-dependencies-1.3.3.RELEASE.pom
です
これにより、フライウェイバージョンが3.2.1に強制されます
Spring Boot docs によると、build.gradle
:ext['flyway.version'] = '4.0.1'
に次のような行を追加できるはずです。
Gradleキャッシュファイルフォルダーに移動します。
cd ~/.gradle/caches/modules-2/files-2.1
このバージョン番号を検索してください:
grep -r "3.2.1" *
このバージョンを使用しているpomファイルがわかります。通常はspring-boot-dependencies-x.y.z.RELEASE.pom
にあります。
<flyway.version>3.2.1</flyway.version>
......
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>${flyway.version}</version>
</dependency>
つまり、spring-boot
を使用すると、依存関係のバージョンが上書きされます。
gradle.properties
ファイルに次の行を追加することで、再度上書きできます。
flyway.version=4.0.1
私は同様の問題に遭遇し、それに数時間を浪費しました。だから私はこの情報をここに残しました、あなたがこの問題に巻き込まれたらこれがあなたの時間を節約できることを願っています