1

我正在尝试使用 Gradle 构建几个 jar,而不是维护包含 EJB 的类列表以便我可以单独部署它们,我认为在制作 jar 时扫描类可能会很整洁。

而不是加载类并使用反射来获取注释,我认为使用 asm 扫描类可能更简单,因此在其中一项任务中使用厚实的 ClassReader。

我不认为这是问题,所以可以忽略,基本上我有 2 个任务用于定义 jar 的内容,两者都报告不同的内容通过 eachFile 打印输出进入它们,但是当我查看时文件和关联的 sha1 的发布存储库位置是相同的。

Gradle 坏了,或者更有可能是我做了一些疯狂的事情但看不到它是什么,有人可以帮忙吗?

顺便说一句,如果我禁用任何一个 jar 文件的发布,那么创建的那个是正确的,所以我认为发布有问题而不是震动,但可能是错误的。

// ASM is used to interpret the class files, this avoids having to load all classes in the vm and use reflection
import org.objectweb.asm.*
task ejbJar(type: Jar) {
  //outputs.upToDateWhen { false }
  from "${project.buildDir}/classes/main"
  eachFile { println "EJB server: ${name}" }
  include getEjbClassFiles(project.buildDir)
}

task clientEjbJar(type: Jar) {
  //outputs.upToDateWhen { false }
  from "${project.buildDir}/classes/main/com/company/core/versioner"
  eachFile { println "Client EJB ${name}" }  
  include '**/*'
}

artifacts {    
  archives clientEjbJar
  archives ejbJar
}
String[] getEjbClassFiles(base) {
  def includedFiles = []
  def baseDir = project.file("${base}/classes/main")
  def parentPath = baseDir.toPath()
  if (baseDir.isDirectory()) {
    baseDir.eachFileRecurse(groovy.io.FileType.FILES) { file ->
      if(file.name.endsWith('.class')) {
        //get hold of annotations in there --- org.objectweb.asm.Opcodes.ASM4
        def reader = new ClassReader(file.bytes).accept(
          new ClassVisitor(Opcodes.ASM4) {
            public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
              if(desc.equals("Ljavax/ejb/Stateless;") ||
                desc.equals("Ljavax/ejb/Stateful;")) {
                includedFiles += parentPath.relativize(file.toPath())
              }
              return null //no interest in actually visiting the annotation values
            }
          }, 
          ClassReader.SKIP_DEBUG | ClassReader.EXPAND_FRAMES | ClassReader.SKIP_FRAMES | ClassReader.SKIP_CODE
        )
      }
    }
  }
  return includedFiles
}    

publishing {
  publications {
    mypub(IvyPublication) {
      artifact(ejbJar) {
        name 'ejb' 
      }
      artifact(clientEjbJar) { 
        name 'client-ejb' 
      }
    }
  }
  repositories {
    ivy {
      name 'personal'
      url "${ant['developer.repository']}/"
      layout 'pattern', {
        artifact "[organisation]/[module]/[artifact]/[revision]/[type]/[artifact]-[revision].[ext]"
    ivy "[organisation]/[module]/[type]/[revision]/[type]/[type]-[revision].[ext]"
      }
    }   
  }  
}

我确实把它分解成一个更简单的形式,因为我认为它可能是一个 Gradle 错误。

简化的形式是:

apply plugin: 'java'
apply plugin: 'ivy-publish'

task bigJar(type: Jar) {
  from "${rootDir}/src/main/resources"
  include '**/*'
}

task smallJar(type: Jar) {
  from "${rootDir}/src/main/resources/A/B"
  include '**/*'
}

group 'ICantBeEmpty'
artifacts {
  archives bigJar
  archives smallJar
}

publishing {
  publications {
    mypub(IvyPublication) {
      artifact(bigJar) { name 'biggie' }
      artifact(smallJar) { name 'smallie' }
    }
    repositories {
  ivy {
    name 'personal'
    url "c:/temp/gradletest"
    layout 'pattern', {
      artifact "[organisation]/[module]/[artifact]/[revision]/[type]/[artifact]-[revision].[ext]"
      ivy "[organisation]/[module]/[type]/[revision]/[type]/[type]-[revision].[ext]"
    }
      }
    }
  }
}

这会在 c:/temp/gradletest/ICantBeEmpty/report-bug/biggie/unspecified/biggie-unspecified.jar 和 c:/temp/gradletest/ICantBeEmpty/report-bug/smallie/unspecified/smallie-unspecified 中生成 2 个文件。 jar 这两个文件都是相同的,但是我想我知道为什么要看到我以后的答案。

4

4 回答 4

1

在查看一些配置时,我注意到一些奇怪的行为导致我解决了这个问题,这是一个 Gradle 错误。

在我的构建中,我有一个从头开始的任务

configurations.archives.artifacts.each { println it }

这给了我 5 条不同的线路输出,但是将其更改为

configurations.archives.artifacts.each { println it.file }

产生相同的文件名 5 次。

事实证明这与我的问题有关,尽管工件作为单独的实体存在,用于唯一标识它们的名称是相同的,因此在发布期间始终选择相同的文件。在 java 插件中,工件的名称默认由 ${baseName}-${appendix}-${version}-${classifier}.${extension} 给出。这意味着如果未指定附录或分类器,则工件将具有相同的名称。

我通过添加附录名称使用上面的示例代码对此进行了测试

task bigJar(type: Jar) {
  appendix = 'big'
  from "${rootDir}/src/main/resources"
  include '**/*'
}

task smallJar(type: Jar) {
  appendix = 'small'
  from "${rootDir}/src/main/resources/A/B"
  include '**/*'
}

使用这个而不是问题中的代码会产生 2 个不同的罐子。

于 2013-05-08T11:19:28.147 回答
0

这不是一个完整的答案,但足够好的解决方法,如果我添加一个新的发布定义,我可以将我想要的工件发布到我想要的位置,唯一的缺点是它会创建另一个 gradle 任务理想。

   publications {
      mypub(IvyPublication) {
        artifact(ejbJar) {
          name 'ejb' 
        }
      }
      newpub(IvyPublication) {
        artifact(clientEjbJar) { 
          name 'client-ejb' 
        }
      }
    }
于 2013-04-08T16:06:52.733 回答
0

上述答案在短期内有效,但确实揭示了 Gradle 世界中的另一个短板在此处输入链接描述

不确定 Gradle 是否是目前的全部,到目前为止还没有人回答我的问题,所以也许它没有那么积极地开发!

于 2013-04-29T14:44:59.867 回答
0

我不是 Gradle 这部分的专家,但是您正在使用的功能被标记为“孵化”;您正在使用可能不完整的新发布功能。也许您应该使用的做事方式。您似乎也通过使用artifacts闭包来混合两种方式。

于 2013-04-29T17:42:54.480 回答