Search Gradle plugins

Version 1.0-SNAPSHOT (latest)

Created 13 July 2018.

Amdatu Blueprint Gradle plugin

Using the plugins DSL:

plugins {
  id("org.amdatu.blueprint") version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.amdatu.blueprint:org.amdatu.blueprint.gradle:1.0-SNAPSHOT")
  }
}

apply(plugin = "org.amdatu.blueprint")

Using the plugins DSL:

plugins {
  id "org.amdatu.blueprint" version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.amdatu.blueprint:org.amdatu.blueprint.gradle:1.0-SNAPSHOT"
  }
}

apply plugin: "org.amdatu.blueprint"

Learn how to apply plugins to subprojects