1

我正在尝试从 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等。

期待建议和想法。

4

1 回答 1

0

添加配置后,主模块的警告已解决,annotationProcessor但测试模块继续存在,这让我相信注释处理器正在您的测试代码中使用。

kapt与Kotlin 注释处理器插件类似,我相信您需要为您的测试模块配置注释处理器,testAnnocationProcessor如下所示:

    testAnnotationProcessor (
        dep_lombokAtnProc,
        dep_micronautAtnProc
    )
于 2019-09-23T07:30:51.820 回答