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

2.2.0

Created 15 January 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.2.0"
}

See also:

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