Search Gradle plugins

Using the plugins DSL:

plugins {
  id("org.brightify.hyperdrive") version "0.1.94"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.brightify.hyperdrive:plugin-gradle:0.1.94")
  }
}

apply(plugin = "org.brightify.hyperdrive")

Using the plugins DSL:

plugins {
  id "org.brightify.hyperdrive" version "0.1.94"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.brightify.hyperdrive:plugin-gradle:0.1.94"
  }
}

apply plugin: "org.brightify.hyperdrive"

Learn how to apply plugins to subprojects