5

我正在尝试为所有子项目(大约 30 个)定义一个 jar 任务。我尝试了以下任务:

 jar {
            destinationDir = file('../../../../_temp/core/modules')
            archiveName = baseName + '.' + extension
            metaInf {
                    from 'ejbModule/META-INF/' exclude 'MANIFEST.MF'
            }

          def manifestClasspath = configurations.runtime.collect { it.getName() }.join(',') 
            manifest {
            attributes("Manifest-Version"       : "1.0",
                "Created-By"             : vendor,
                "Specification-Title"    : appName,
                "Specification-Version"  : version,
                "Specification-Vendor"   : vendor,
                "Implementation-Title"   : appName,
                "Implementation-Version" : version,
                "Implementation-Vendor"  : vendor,
                "Main-Class"             : "com.dcx.epep.Start",
                "Class-Path"             : manifestClasspath 
            )
            }
    }

我的问题是,子项目之间的依赖关系不包含在清单的类路径中。我尝试将运行时配置更改为编译配置,但这会导致以下错误。

  • 出了什么问题:评估项目“:EskoordClient”时出现问题。

    您不能更改未处于未解决状态的配置!

这是我的 EskoordClient 项目的完整构建文件:

dependencies {     
    compile project(':ePEPClient')
}

我的大多数子项目构建文件只定义项目依赖项。3rd 方库依赖项在超级项目的构建文件中定义。

是否有可能将所有需要的类路径条目(第 3 方库和其他项目)包含到所有子项目的超级项目中的清单类路径中。

4

1 回答 1

5

This is how I got it to work. Get Project dependencies only using the call:

getAllDependencies().withType(ProjectDependency)

then adding the contents of each project's libsDir to my Class-Path manifest entry.

jar {
    manifest {
        attributes 'Main-Class': 'com.my.package.Main'
        def manifestCp = configurations.runtime.files.collect  {
        File file = it
        "lib/${file.name}"
        }.join(' ')


         configurations.runtime.getAllDependencies().withType(ProjectDependency).each {dep->

            def depProj = dep.getDependencyProject()
            def libFilePaths = project(depProj.path).libsDir.list().collect{ inFile-> "lib/${inFile}"  }.join(' ')
            logger.info"Adding libs from project ${depProj.name}: [- ${libFilePaths} -]"
            manifestCp += ' '+libFilePaths
        }

        logger.lifecycle("")
        logger.lifecycle("---Manifest-Class-Path: ${manifestCp}")
        attributes 'Class-Path': manifestCp

    }

}
于 2012-09-06T21:30:55.857 回答