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.1
3.0.1
Created 02 June 2023.
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.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("edu.sc.seis.launch4j:launch4j:3.0.1")
}
}
apply(plugin = "edu.sc.seis.launch4j")
Using the plugins DSL:
plugins {
id "edu.sc.seis.launch4j" version "3.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "edu.sc.seis.launch4j:launch4j:3.0.1"
}
}
apply plugin: "edu.sc.seis.launch4j"