tech.harmonysoft.custom-gradle-dist-plugin
Owner: Denis Zhdanov
Helps setting up custom Gradle wrapper construction
http://gradle-dist.oss.harmonysoft.tech/
Sources: https://github.com/denis-zhdanov/custom-gradle-dist-gradle-plugin
Version 1.2 (latest)
1.2
Created 14 October 2018.
Helps setting up custom Gradle wrapper construction
Using the plugins DSL:
plugins {
id("tech.harmonysoft.custom-gradle-dist-plugin") version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.tech.harmonysoft:gradle-distribution-gradle-plugin:1.2")
}
}
apply(plugin = "tech.harmonysoft.custom-gradle-dist-plugin")
Using the plugins DSL:
plugins {
id "tech.harmonysoft.custom-gradle-dist-plugin" version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.tech.harmonysoft:gradle-distribution-gradle-plugin:1.2"
}
}
apply plugin: "tech.harmonysoft.custom-gradle-dist-plugin"