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 1.1.2
Created 12 June 2015.
A gradle-plugin to create windows executables with launch4j for Java application.
Add this plugin to your build using the plugins DSL:
plugins {
id("edu.sc.seis.launch4j") version "1.1.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("edu.sc.seis.launch4j:edu.sc.seis.launch4j.gradle.plugin:1.1.2") }
It can then be applied in the precompiled script plugin:plugins { id("edu.sc.seis.launch4j") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("edu.sc.seis.launch4j:edu.sc.seis.launch4j.gradle.plugin:1.1.2") } } apply(plugin = "edu.sc.seis.launch4j")
- Applying plugins to all subprojects .