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 3.0.6 (latest)
3.0.6
Created 07 July 2024.
A gradle-plugin to create windows executables with launch4j for Java application.
Using the plugins DSL:
plugins {
id("edu.sc.seis.launch4j") version "3.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("edu.sc.seis.launch4j:launch4j:3.0.6")
}
}
apply(plugin = "edu.sc.seis.launch4j")
Using the plugins DSL:
plugins {
id "edu.sc.seis.launch4j" version "3.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "edu.sc.seis.launch4j:launch4j:3.0.6"
}
}
apply plugin: "edu.sc.seis.launch4j"