Gradle:如何使用one-jar输出作为launch4j的输入

时间:2014-12-05 08:43:49

标签: java build gradle launch4j onejar

我想创建一个exe文件,而不必将所有必需的库放在exe旁边。 以前用ant我用one-jar创建了一个自包含的jar文件,然后用launch4j将它包装到exe文件中。

Gradle有两个插件,独立插件都可以很好地工作,几乎没有配置。

但是如何设法使用创建的one-jar作为launch4j的输入?

这是我当前的构建文件:

apply plugin: 'java'
apply plugin: 'launch4j'
apply plugin: 'gradle-one-jar'

buildscript {
    repositories {
        mavenCentral()
    }

    dependencies {
        classpath 'edu.sc.seis.gradle:launch4j:1.0.6'
        classpath 'com.github.rholder:gradle-one-jar:1.0.4'
    }
}

launch4j {
    mainClassName = "de.my.umkopierer.Umkopierer"
    launch4jCmd = "C:/Program Files (x86)/Launch4j/launch4j"
    jar = "lib/Umkopierer-1.0.jar"
    headerType = "console"
    dontWrapJar = false
}

sourceCompatibility = 1.7
version = '1.0'

jar {
    manifest {
        attributes 'Implementation-Title': 'Umkopierer', 'Implementation-Version': version
    }
}

repositories {
    mavenCentral()
}

dependencies {
    compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
    compile 'com.google.guava:guava:18.0'    
    compile 'com.fasterxml.jackson.core:jackson-core:2.4.4'
    compile 'com.fasterxml.jackson.datatype:jackson-datatype-jdk7:2.4.4'
    compile 'com.fasterxml.jackson.core:jackson-databind:2.4.4'


    testCompile group: 'junit', name: 'junit', version: '4.+'
}

task oneJar(type: OneJar) {
    mainClass = "de.stiffi.umkopierer.Umkopierer"
}

1 个答案:

答案 0 :(得分:1)

我通过使launch4j任务'createExe'依赖于onejar / fatjar(或任何其他胖jar创建方法)来解决这个问题。 E.g:

tasks.createExe.dependsOn('oneJar')     


task launch4j(overwrite: true, dependsOn: ['createExe']){
}

另外我认为你的gradle构建文件应该包含一个主类属性,如

manifest {
    attributes 'Main-Class':'com.example.MyMainClass'
}

(至少在你使用fatjar gradle插件时就是这种情况)。