Search Gradle plugins

edu.sc.seis.launch4j

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.2

Created 10 June 2023.

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 "3.0.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:3.0.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:3.0.2")
      }
    }
    
    apply(plugin = "edu.sc.seis.launch4j")
  • Applying plugins to all subprojects .