如何在Gradle中更新依赖项

时间:2015-11-08 12:34:16

标签: java maven intellij-idea gradle

任何机构都可以告诉我如何在gradle中执行maven install -U(更新依赖项)之类的操作。

我遇到问题我已将新依赖项添加到build.gradle文件

dependencies {
    compile('org.springframework.boot:spring-boot-starter-data-jpa')
    compile('org.springframework.boot:spring-boot-starter-thymeleaf')
    compile('org.springframework.boot:spring-boot-starter-web')
    compile("org.springframework.boot:spring-boot-starter-security")
    runtime('com.h2database:h2')
    testCompile('org.springframework.boot:spring-boot-starter-test') 
}

新的依赖是:

compile("org.springframework.boot:spring-boot-starter-security")

在构建或项目同步期间,我的IntelliJ(版本14)甚至没有尝试下载这个新的依赖项(我正在使用gradle版本2.5)

在maven项目中,IntelliJ有类似下载maven依赖项的东西。 但是对于Gradle我没有看到这样的东西。这就像我的项目看起来像

并且任何人都可以告诉我为什么我没有像maven那样在项目列表上看到任何* .jar吗?

enter image description here

2 个答案:

答案 0 :(得分:2)

使用IntelliJ

在Gradle工具窗口中,单击“刷新”按钮。这是屏幕:

Gradle tool window

使用终端

您必须添加到build.gradle这一行

apply plugin: 'idea'

接下来如果要添加一些依赖项并且想要同步IntelliJ,则只需使用命令

gradle idea

答案 1 :(得分:0)

如果任何人在查找Gradle Tool Window时遇到问题:

查看|工具窗口|摇篮