如何从命令行更新 Gradle 依赖项?

2022-08-31 20:54:06

我有以下文件:build.gradle

apply plugin: 'java'
apply plugin: 'eclipse'

sourceCompatibility = 1.7
version = '1.0'

repositories {
    mavenCentral()
}

dependencies {
    compile 'org.springframework:spring-core:4.1.1.RELEASE'
    compile 'org.springframework:spring-context:4.1.1.RELEASE'
    testCompile group: 'junit', name: 'junit', version: '4.+'
}

我运行以下命令:

$ gradle --refresh-dependencies

但它什么也没做。依赖项不会更新,也不会反映在类路径上。命令的输出为:

:help

Welcome to Gradle 2.1.

To run a build, run gradle <task> ...

To see a list of available tasks, run gradle tasks

To see a list of command-line options, run gradle --help

BUILD SUCCESSFUL

Total time: 5.999 secs

不过,通过Eclipse gradle插件执行此操作是有效的。


答案 1
gradle --refresh-dependencies <task>

答案 2

我正在使用Gradle 2.9,我用它来强制刷新:

gradle build --refresh-dependencies

推荐