tech.harmonysoft.oss.custom-gradle-dist-plugin
Owner:
Denis Zhdanov
Helps setting up custom Gradle wrapper construction
http://gradle-dist.oss.harmonysoft.tech/
Version 1.3
Created 14 October 2018.
Helps setting up custom Gradle wrapper construction
Using the plugins DSL:
plugins {
id("tech.harmonysoft.oss.custom-gradle-dist-plugin") version "1.3"
}
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.3")
}
}
apply(plugin = "tech.harmonysoft.oss.custom-gradle-dist-plugin")
Using the plugins DSL:
plugins {
id "tech.harmonysoft.oss.custom-gradle-dist-plugin" version "1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.tech.harmonysoft:gradle-distribution-gradle-plugin:1.3"
}
}
apply plugin: "tech.harmonysoft.oss.custom-gradle-dist-plugin"