我知道为什么我的依赖不起作用。这是我的配置:
ext {
junitVersion = "4.11"
libs = [
junit : dependencies.create("junit:junit:4.11")
]
}
configure(subprojects) { subproject ->
dependencies {
testCompile(libs.junit)
}
}
我有错误:
* What went wrong:
A problem occurred evaluating root project 'unit590'.
> Could not find method testCompile() for arguments [DefaultExternalModuleDependency{group='junit', name='junit', version='4.11', configuration='default'}] on org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@785c1069.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
谢谢你的帮助