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 2.4.2

2.4.2

Created 28 September 2017.

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 "2.4.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.edu.sc.seis.gradle:launch4j:2.4.2")
      }
    }
    
    apply(plugin = "edu.sc.seis.launch4j")
  • Applying plugins to all subprojects .