W.r.t.从Gradle将选项传递给JPAAnnotationProcessor

时间:2017-11-15 09:33:00

标签: jpa gradle querydsl

我使用的是Gradle版本2.14,我在new中进行了更改,以排除build.gradle中提到的JPAAnnotationProcessor包。 我的build.gradle配置如下:

configurations {

    querydslapt     
}


dependencies{
    compile group: 'com.querydsl', name: 'querydsl-core', version: '4.1.4'
    compile group: 'com.querydsl', name: 'querydsl-apt', version: '4.1.4'
    compile group: 'com.querydsl', name: 'querydsl-jpa', version: '4.1.4'

}

task generateQueryDSL(type: JavaCompile, group: 'build', description: 'Generates the QueryDSL query types') {

    source =sourceSets.main.java

    classpath = configurations.compile + configurations.querydslapt
    options.compilerArgs = [
            "-proc:only",
            "-processor", "com.querydsl.apt.jpa.JPAAnnotationProcessor",
            "-Aquerydsl.excludedPackages=com.projectx.data.domain.poc.lombok"            
    ]
    destinationDir = sourceSets.generated.java.srcDirs.iterator().next()
}

compileJava {
    dependsOn generateQueryDSL
    source generateQueryDSL.destinationDir
}

compileGeneratedJava {
    dependsOn generateQueryDSL
    options.warnings = false
    classpath += sourceSets.main.runtimeClasspath
}

但是当我构建应用程序时,我收到警告warning: The following options were not recognized by any processor: '[querydsl.excludedPackages]'

指定的包不会从预处理中排除。

1 个答案:

答案 0 :(得分:3)

找到了解决方案!

向aptOptions添加querydsl.entityAccessors=true后,警告仍然存在,但是排除软件包仍然有效!

对于您而言,您应尝试将-Aquerydsl.entityAccessors=true添加到options.compilerArgs =[] 希望对您有帮助

已更新

仅注意到您在项目中使用lombook。 找到了这个(How to make QueryDSL and Lombok work together)希望对您有帮助!