刚刚开始尝试使用 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 进行大型商业项目有任何看法。
谢谢亚当