用Gradle建立一个uberjar

时间:2012-06-11 19:22:38

标签: java groovy gradle uberjar

我是Gradle新手。我想构建一个uberjar(AKA fatjar),它包含项目的所有传递依赖项。我需要在“build.gradle”中添加哪些行?

这就是我现在所拥有的:(我几天前从某处复制过,但不记得从哪里开始。)

task uberjar(type: Jar) {
    from files(sourceSets.main.output.classesDir)

    manifest {
        attributes 'Implementation-Title': 'Foobar',
                'Implementation-Version': version,
                'Built-By': System.getProperty('user.name'),
                'Built-Date': new Date(),
                'Built-JDK': System.getProperty('java.version'),
                'Main-Class': mainClassName
    }
}

4 个答案:

答案 0 :(得分:38)

我将task uberjar(..替换为以下内容:

jar {
    from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }) {
        exclude "META-INF/*.SF"
        exclude "META-INF/*.DSA"
        exclude "META-INF/*.RSA"
    }

    manifest {
        attributes 'Implementation-Title': 'Foobar',
                'Implementation-Version': version,
                'Built-By': System.getProperty('user.name'),
                'Built-Date': new Date(),
                'Built-JDK': System.getProperty('java.version'),
                'Main-Class': mainClassName
    }
}

需要排除,因为在他们缺席的情况下,您会遇到this问题。

答案 1 :(得分:32)

您是否尝试了gradle cookbook中的fatjar示例?

您正在寻找的是the shadow plugin gradle

答案 2 :(得分:6)

只需将其添加到您的java模块的build.gradle。

mainClassName =" my.main.Class"

jar {
  manifest { 
    attributes "Main-Class": "$mainClassName"
  }  

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

这将导致[module_name] / build / libs / [module_name] .jar文件。

答案 3 :(得分:5)

我发现这个project非常有用。使用它作为参考,我的Gradle uberjar任务将是

task uberjar(type: Jar, dependsOn: [':compileJava', ':processResources']) {
    from files(sourceSets.main.output.classesDir)
    from configurations.runtime.asFileTree.files.collect { zipTree(it) }

    manifest {
        attributes 'Main-Class': 'SomeClass'
    }
}