1
テストに失敗しました。
例外を修正するにはどうすればよいですか?受け台でのテスト
Could not determine the dependencies of task ':test'.
Configuration with name 'default' not found.
私の親settings.gradle
rootProject.name = 'opti'
include 'web'
build.gradle
allprojects {
repositories {
mavenCentral()
}
group 'com.opti'
version '1.0'
apply plugin: 'java'
apply plugin: 'groovy'
dependencies {
testCompile 'org.codehaus.groovy:groovy-all:2.3.11',
'org.spockframework:spock-maven:0.7-groovy-2.0'
}
}
テスト済みモジュールsettings.gradle
rootProject.name = 'web'
include 'web'
ビルド:ここ は、スタックトレースとコードです。グラデル
group 'com.opti'
version '1.0'
apply plugin: 'groovy'
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile(project(':web'))
}