Search Gradle plugins

Version 0.0.1 (latest)

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"

Learn how to apply plugins to subprojects