いくつかの範囲を指定するには、バージョンでカンマをサポートしていますか?いくつかの範囲を指定するために、gradleはバージョンでコンマをサポートしていますか?
評価:
dependencies {
compile 'org.webjars.npm:minimatch:2.+,3.+'
}
または:
compile 'org.webjars.npm:minimatch:[2,3),[3,4)'
(1.0]、[1.2) X < = 1.0 X> = 1.2。
dependencies { compile(group: 'org.webjars.npm', name: 'glob', version: '5.0.15') { }
:複数のセットは、ために、このライブラリ
との組み合わせで動作しないことが知られている場合、これは1.1を除外カンマ区切り
(1.1)、(1.1) ありますGradleの依存関係を解決するためにアイビーを使用しています
Execution failed for task ':dump'.
> Could not resolve all files for configuration ':runtime'.
> Could not find org.webjars.npm:minimatch:[2,3),[3,4).
Searched in the following locations:
https://repo1.maven.org/maven2/org/webjars/npm/minimatch/[2,3),[3,4)/minimatch-[2,3),[3,4).pom
https://repo1.maven.org/maven2/org/webjars/npm/minimatch/[2,3),[3,4)/minimatch-[2,3),[3,4).jar
https://jcenter.bintray.com/org/webjars/npm/minimatch/[2,3),[3,4)/minimatch-[2,3),[3,4).pom
https://jcenter.bintray.com/org/webjars/npm/minimatch/[2,3),[3,4)/minimatch-[2,3),[3,4).jar
Required by:
project : > org.webjars.npm:glob:5.0.15
https://github.com/gradle/gradle/issues/3869 - *バージョン範囲のリストの推移依存性がビルド* – gavenkoa