我是全新的,因此这可能是一个明显的问题:
我正在使用带有gradle的eclipse,我实际上没有为junit或者东西添加依赖项没有问题,它将junit lib添加到gradle依赖项中并且使用junit没有问题,但是如果我尝试使用args4j(也可以添加依赖项)它只是不起作用。
只是为了确保build.gradle没有问题
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.8
version = '1.0'
jar {
manifest {
attributes 'Implementation-Title': 'title',
'Implementation-Version': version,
'Main-Class':'path.to.main.Main'
}
}
repositories {
mavenCentral()
}
test {
systemProperties 'property': 'value'
}
dependencies{
compile 'args4j:args4j-site:2.0.25'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
并且我没有使用title或path.to.main ^^
Eclipse告诉我导入(args4j)无法解析答案 0 :(得分:2)
你忘了主“args4j”模块:
compile group: 'args4j', name: 'args4j', version: '2.0.25'
compile group: 'args4j', name: 'args4j-site', version: '2.0.25'