将注释处理器与Gradle集成

时间:2013-03-23 07:35:31

标签: java intellij-idea annotations gradle

我需要编写一些注释处理器。我发现this blog post提到了如何在一般环境和Eclipse中完成这项工作。

然而,我正在使用IntelliJ IDEA和Gradle,并且如果有更好的(因为,不那么乏味)的方法,那么就会喜欢它。我在找什么:

  1. 我应该能够编写注释处理器和将在同一个项目中使用它们的代码,Gradle应该处理将处理器添加到类路径并在approrpiate阶段使用javac调用它们。 LI>
  2. 如果以上是不可能的,我必须创建两个单独的项目,那么至少应该可以将它们保存在同一个git存储库中。 Gradle应该无缝地处理构建。
  3. 如果两者都不可能并且我必须创建两个单独的git存储库,那么至少Gradle应该无缝地处理链接博客文章中提到的内容而无需进一步的手动干预。
  4. 我的git和Gradle技能是初级水平。我很感激任何帮助这项任务。谢谢。

2 个答案:

答案 0 :(得分:9)

是的,可以将处理器移动到分离的模块并从另一个模块使用它(参见下面的querydslapt)。

我建议您实施自己的AbstractProcessor

并使用它:

dependencies {
    ....
    // put dependency to your module with processor inside
    querydslapt "com.mysema.querydsl:querydsl-apt:$querydslVersion" 
}

task generateQueryDSL(type: JavaCompile, group: 'build', description: 'Generates the QueryDSL query types') {
    source = sourceSets.main.java // input source set
    classpath = configurations.compile + configurations.querydslapt // add processor module to classpath
    // specify javac arguments
    options.compilerArgs = [
            "-proc:only",
            "-processor", "com.mysema.query.apt.jpa.JPAAnnotationProcessor" // your processor here
    ]
    // specify output of generated code
    destinationDir = sourceSets.generated.java.srcDirs.iterator().next()
}

您可以找到完整示例here

答案 1 :(得分:9)

另一种解决方案(在我看来更干净)可能有两个subprojects,然后简单地使包含注释处理器的那个解决方案成为主要的依赖关系。因此,如果项目的根目录中包含子项目的两个目录:coreannotation-processors,则还需要一个settings.gradle文件,其中包含以下内容:

include 'core'
include 'annotation-processors'

然后在核心项目的gradle文件中:

dependencies {
    compile project(':annotation-processors')
}

应该这样做,你不必处理自定义编译任务及其类路径。