2014-11-06 95 views
19

我有以下build.gradle文件:如何从命令行更新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插件执行此操作虽然可行。

回答

27
gradle --refresh-dependencies <task> 
4

你应该先干净gradle clean然后gradle eclipse终于进入月食项目并刷新该项目,它适合我的。

8

我使用的摇篮2.9,我用这个部队刷新:

gradle build --refresh-dependencies