Search Gradle plugins

io.ezard.packr

A Gradle plugin that uses packr to create native executables for Java projects

https://github.com/Ezard/gradle-packr

Sources: https://github.com/Ezard/gradle-packr

Version 0.1.3 (latest)

Created 28 August 2017.

A Gradle plugin that uses packr to create native executables for Java projects

Using the plugins DSL:

plugins {
  id("io.ezard.packr") version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.ezard:packr:0.1.3")
  }
}

apply(plugin = "io.ezard.packr")

Using the plugins DSL:

plugins {
  id "io.ezard.packr" version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.ezard:packr:0.1.3"
  }
}

apply plugin: "io.ezard.packr"

Learn how to apply plugins to subprojects