添加依赖项

Gradle 中的依赖关系遵循与 Maven 相同的格式。依赖关系的结构如下:

group:name:version

这是一个例子:

'org.springframework:spring-core:4.3.1.RELEASE'

要添加为编译时依赖项,只需在 Gradle 构建文件的 dependency 块中添加以下行:

compile 'org.springframework:spring-core:4.3.1.RELEASE'

另一种语法明确命名依赖项的每个组件,如下所示:

compile group: 'org.springframework', name: 'spring-core', version: '4.3.1.RELEASE'

这会在编译时添加依赖项。

你还可以仅为测试添加依赖项。这是一个例子:

testCompile group: 'junit', name: 'junit', version: '4.+'