net.alchim31.gradle.getdown
Owner: David Bernard
A gradle plugin to bundle java app + jre with getdown support
https://github.com/davidB/gradle-getdown-plugin
Version 0.1.1 (latest)
0.1.1
Created 24 September 2014.
No version description available.
Using the plugins DSL:
plugins {
id("net.alchim31.gradle.getdown") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.alchim31.gradle:gradle-getdown-plugin:0.1.1")
}
}
apply(plugin = "net.alchim31.gradle.getdown")
Using the plugins DSL:
plugins {
id "net.alchim31.gradle.getdown" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.alchim31.gradle:gradle-getdown-plugin:0.1.1"
}
}
apply plugin: "net.alchim31.gradle.getdown"