edu.sc.seis.launch4j
Owner: Sebastian Bögl
A gradle-plugin to create windows executables with launch4j for Java application.
https://github.com/TheBoegl/gradle-launch4j
Sources: https://github.com/TheBoegl/gradle-launch4j
Version 2.4.4
2.4.4
Created 31 May 2018.
A gradle-plugin to create windows executables with launch4j for Java application.
Using the plugins DSL:
plugins {
id("edu.sc.seis.launch4j") version "2.4.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.edu.sc.seis.gradle:launch4j:2.4.4")
}
}
apply(plugin = "edu.sc.seis.launch4j")
Using the plugins DSL:
plugins {
id "edu.sc.seis.launch4j" version "2.4.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.edu.sc.seis.gradle:launch4j:2.4.4"
}
}
apply plugin: "edu.sc.seis.launch4j"