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 1.6.1

Created 03 December 2015.

A gradle-plugin to create windows executables with launch4j for Java application.

Using the plugins DSL:

plugins {
  id("edu.sc.seis.launch4j") version "1.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.edu.sc.seis.gradle:launch4j:1.6.1")
  }
}

apply(plugin = "edu.sc.seis.launch4j")

Using the plugins DSL:

plugins {
  id "edu.sc.seis.launch4j" version "1.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.edu.sc.seis.gradle:launch4j:1.6.1"
  }
}

apply plugin: "edu.sc.seis.launch4j"

Learn how to apply plugins to subprojects