Search Gradle plugins

io.watling.gradle.launch4j

Launch4j Gradle Plugin. Wraps Launch4j and uses existing launch4j.xml configuration.

https://github.com/dwatling/gradle-launch4j-plugin

Sources: https://github.com/dwatling/gradle-launch4j-plugin.git

Version 1.0.0 (latest)

Created 24 April 2023.

Launch4j Gradle Plugin. Wraps Launch4j and uses existing launch4j.xml configuration.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.watling.gradle.launch4j") version "1.0.0"
}

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("io.watling.gradle.launch4j:io.watling.gradle.launch4j.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.watling.gradle.launch4j")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.watling.gradle.launch4j:io.watling.gradle.launch4j.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "io.watling.gradle.launch4j")
  • Applying plugins to all subprojects .