gradle 添加依赖

示例

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

group:name:version

这是一个例子:

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

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

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.+'