Search Gradle plugins

Version 0.0.4

Created 16 April 2020.

This Kotlin file is autogenerated from a txt file where you only copy and paste the dependencies

Using the plugins DSL:

plugins {
  id("com.javiersc.resources.autodependencies") version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.javiersc.resources.autodependencies:autodependencies:0.0.4")
  }
}

apply(plugin = "com.javiersc.resources.autodependencies")

Using the plugins DSL:

plugins {
  id "com.javiersc.resources.autodependencies" version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.javiersc.resources.autodependencies:autodependencies:0.0.4"
  }
}

apply plugin: "com.javiersc.resources.autodependencies"

Learn how to apply plugins to subprojects