我是新手。尝试将testNG与Gradle集成,并希望使用" gradle build"创建jar文件。命令 这就是我的build.gradle的样子
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.5
version = '1.0'
jar {
manifest {
attributes 'Implementation-Title': 'Gradle Quickstart',
'Implementation-Version': version,
'Main-Class': 'org.testng.TestNG'
}
}
repositories {
mavenCentral()
}
dependencies {
testCompile 'org.testng:testng:6.9.10'
}
test {
useTestNG(){
include '**/*'
}
}
uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
}
}
然而,当我运行" gradle build"命令我收到每个testNG注释的跟随错误
:错误:找不到符号 @测试 ^ 符号:类测试 地点:班级helloWorld