0

我有一个带有自定义定义 xjc 任务的多项目 Gradle 构建来构建 jaxb 生成的对象,并且我在以正确的顺序构建步骤时遇到问题。

我有 3 个项目,common、ref 和 product。ref 取决于 common,product 取决于 ref 和 common。命名对我的问题很重要,因为 gradle 似乎按字母顺序执行操作,并且我已经删除了一些其他依赖项,因为它们不会影响问题。

在每个项目中,顺序应该是 jaxb,java compile 然后 scala compile。

在顶层 build.gradle 中,我将 jaxb 任务指定为:

task jaxb() {
    description 'Converts xsds to classes'
    def jaxbTargetFile = file( generatedSources )
    def jaxbSourceFile =  file ( jaxbSourceDir )
    def jaxbEpisodesFile =  file ( jaxbEpisodeDir )
    def bindingRootDir =  file ( rootDir.getPath() + '/')

    inputs.dir jaxbSourceDir
    outputs.dir jaxbTargetFile
    doLast {
        ant.taskdef(name: 'xjc', classname: 'com.sun.tools.xjc.XJCTask', classpath: configurations.jaxb.asPath)

        jaxbTargetFile.mkdirs()
        jaxbEpisodesFile.mkdirs()

        for ( xsd in bindingsMap) {
            if (!episodeMap.containsKey(xsd.key)) {
                ant.fail( "Entry no found in the episodeMap for xsd $xsd.key" )
            }
            def episodeFile = projectDir.getPath() + '/' + jaxbEpisodeDir + '/' + episodeMap.get(xsd.key)
            println( "Processing xsd $xsd.key with binding $xsd.value producing $episodeFile" )
            ant.xjc(destdir: "$jaxbTargetFile", extension: true, removeOldOutput: true) {
                    schema(dir:"$jaxbSourceFile", includes: "$xsd.key")
                    binding(dir:"$bindingRootDir" , includes: "$xsd.value")
                    arg(value: '-npa')
                    arg(value: '-verbose')
                    arg(value: '-episode')
                    arg(value: episodeFile)
            }
        }
    }
}

在我指定的产品的单个 build.gradle 文件中(参考中类似)

dependencies {
     compile project(':common')
     compile project(':ref')
}

在我指定的所有三个项目中

compileJava.dependsOn(jaxb)

当我在产品项目中运行发布(或 jar)时,我可以看到以下输出:

common:jaxb
common:compileJava
common:compileScala
common:jar
product:jaxb
ref:jaxb
refcompileJava
ref:compileScala
ref:jar
product:compileJava
product:compileScala

这给了我一个错误,因为产品中的 xsd 引用了 ref,并且 ref 尚未运行 jaxb,但没有用于 ref 的剧集绑定文件,并且产品使用错误的包名称重新生成导入的类。

如何确保 ref jaxb 在产品 jaxb 之前运行?

4

1 回答 1

0

如果你的产品的 jaxb 任务依赖于 ref 和 common 的 jaxb 任务,你应该定义这个依赖:

(在productbuild.gradle 中)

task jaxb(dependsOn: [':common:jaxb', ':ref:jaxb']) {
...
}

ref在(on commmon)中设置同种依赖

于 2013-08-19T19:29:54.740 回答