0

刚刚开始尝试使用 gradle,但还没有走多远。请帮忙。

我遵循了文档,但它只显示了我无法工作的单个依赖项或依赖项。这是我的 build.gradle 文件:

apply plugin: 'java'
sourceCompatibility = 1.7
OFFICEDB_VERSION = 'JAN12R2'

repositories {
    mavenCentral()
}

dependencies {
    compile group:
            'org.hibernate:hibernate-validator:5.0.0.Alpha1',
            'javax.validation:validation-api:1.1.0.Alpha1',
            'com.exlogs.officedb:common:${OFFICEDB_VERSION}',
            'com.exlogs.officedb:officedb-service:${OFFICEDB_VERSION}',
            'com.exlogs:eventhub:1.0.0-RC1',
            'commons-httpclient:commons-httpclient:3.1'

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

问题是当我在gradle build命令行上输入时,我得到:

FAILURE: Build failed with an exception.

* Where:
Build file 'C:\Dev\Code\officedb\manpower\build.gradle' line: 10

* What went wrong:
A problem occurred evaluating root project 'manpower'.
> Could not create a dependency using notation: {group=org.hibernate:hibernate-validator:5.0.0.Alpha1}

但是查看文档应该没问题。此外,我发现的所有示例构建文件都相当小或只有一个依赖项。有没有人对使用 gradle 进行大型商业项目有任何看法。

谢谢亚当

4

1 回答 1

4

您需要为每个依赖项指定配置(类似于 Maven 范围,即compile,testCompile等):

dependencies {
    compile 'org.hibernate:hibernate-validator:5.0.0.Alpha1'
    compile 'javax.validation:validation-api:1.1.0.Alpha1'
    compile "com.exlogs.officedb:common:${OFFICEDB_VERSION}"
    compile "com.exlogs.officedb:officedb-service:${OFFICEDB_VERSION}"
    compile 'com.exlogs:eventhub:1.0.0-RC1'
    compile 'commons-httpclient:commons-httpclient:3.1'

    testCompile group: 'junit', name: 'junit', version: '4.+'
    testCompile 'org.mockito:mockito-all:1.9.0'
}

group是提供依赖坐标 ( group: 'junit', name: 'junit', version: '4.+') 的替代语法的一部分,而不是特殊关键字。

另请注意,您需要双引号才能在字符串中使用变量:

compile "com.exlogs.officedb:common:${OFFICEDB_VERSION}"
于 2012-11-30T14:32:37.333 回答