如何在gradle jar任务生成的jar中包括运行时依赖项

时间:2019-02-06 05:49:31

标签: java gradle

我正在使用gradle创建一个胖子罐,build.gradle如下:

...
dependencies {  

    compile files('local_path1')
    compile files('local_path2')  
    runtime files('local_path3')
}

task customFatJar(type: Jar) {
    manifest {
        attributes 'Main-Class': 'MyMainClass'
    }
    archiveName = 'my-jar'
    from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
    with jar
}

现在,一旦我运行“ customFatJar”任务,生成的jar将在路径“ local_path1”和“ local_path2”中包含相关的jar。但是生成的jar不在路径“ local_path3”中包含从属jar。

请告知我正确的依赖项配置以实现此目标。

2 个答案:

答案 0 :(得分:0)

在将local_path3定义为runtime时,您也需要将它们添加到脚本中。目前,它仅收集所有runtime库。可能看起来像:

from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }

答案 1 :(得分:0)

您应该查看configurations created by the Java plugin周围的文档以及它们之间的关系。

为了不遗漏胖子中的一个 runtime 依赖项,您应该依靠runtimeClasspath配置:

from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }