我正在尝试从 Gradle 解决以下警告。它仅在我调用测试代码时发生。主要的 Java(仅)运行和构建任务工作正常。
测试代码在 Groovy 中。似乎 Groovy 与 Gradle 和 Micronaut 结合在几周前解决了该消息但顽固地坚持相关任务的项目中提出了此test
消息testCompile
。
> Task :plumbing:compileTestGroovy
The following annotation processors were detected on the compile classpath:
'io.micronaut.annotation.processing.TypeElementVisitorProcessor' and 'io.micronaut.annotation.processing.PackageConfigurationInjectProcessor' and
'io.micronaut.annotation.processing.BeanDefinitionInjectProcessor'.
Detecting annotation processors on the compile classpath is
deprecated and Gradle 5.0 will ignore them. Please add them
to the annotation processor path instead. If you did not
intend to use annotation processors, you can use the
'-proc:none' compiler argument to ignore them.
从 Micronaut 开始,我通过反复试验发现使用 Lombok 的说明到目前为止,运行 Groovy 测试的唯一方法是在build.gradle
文件中使用以下配方。Micronaut 配方指定将 Lombok 放在 Micronaut 之前。这对 Java 构建有效。
为了让 Groovy 代码编译然后执行,我(似乎)需要这样编写我的依赖项:
configurations {
annotationProcessor
}
dependencies
{
compileOnly (
dep_lombok // Must come first
)
annotationProcessor (
dep_lombokAtnProc, // Must come first
dep_micronautAtnProc
)
compileOnly (
dep_micronaut // Must follow annotationProcessor
)
implementation (
project( ':base'),
)
testImplementation (
project( ':TestingSupport')
)
testImplementation (
dep_micronaut,
dep_commonsConfig
)
}
- 依赖
dep_XXX
项只是字符串。 - “
AtnProc...
”标签是为了具体标识Annotation Processor(即使是同一个坐标)。
如果该compileOnly ( dep micronaut )
子句对于诸如使用 Groovy 构建的事情@Inject
进行处理是必要的。和 ...
- 它必须按照显示的顺序,在
annotationProcessor(..)
子句之后。
尽管此时 Groovy 文件中没有注释。
使用上述构建信息,Groovy 规范可以正常运行和工作。但是我仍然收到Deprecated ...
警告。
如果没有这compileOnly( Micronaut )
句话,我会得到编译错误并且没有任何运行。 testCompileOnly
,groovyCompileOnly
或者testAnnotationProcessor
什么都不做。
谁知道在使用 Micronaut 时如何使用 Gradle 构建和运行 Groovy 测试?测试与龙目岛罚款共存。
缺少的东西是@Inject
,@Singleton
等。
期待建议和想法。