任何机构都可以告诉我如何在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吗?