org.gradleweaver.plugins.better-build-file-names
Owner: Jonathan Leitschuh
Gives your build better default build file names.
https://github.com/gradleweaver/better-build-file-names
Sources: https://github.com/gradleweaver/better-build-file-names
Version 0.0.1 (latest)
0.0.1
Created 26 September 2019.
Gives your build better default build file names.
Using the plugins DSL:
plugins {
id("org.gradleweaver.plugins.better-build-file-names") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.gradleweaver.plugins:better-build-file-names:0.0.1")
}
}
apply(plugin = "org.gradleweaver.plugins.better-build-file-names")
Using the plugins DSL:
plugins {
id "org.gradleweaver.plugins.better-build-file-names" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.gradleweaver.plugins:better-build-file-names:0.0.1"
}
}
apply plugin: "org.gradleweaver.plugins.better-build-file-names"