Search Gradle plugins

Using the plugins DSL:

plugins {
  id("com.microsoft.hydralab.client-util") version "1.0.16"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.microsoft.hydralab:client_utils_gradle_plugin:1.0.16")
  }
}

apply(plugin = "com.microsoft.hydralab.client-util")

Using the plugins DSL:

plugins {
  id "com.microsoft.hydralab.client-util" version "1.0.16"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.microsoft.hydralab:client_utils_gradle_plugin:1.0.16"
  }
}

apply plugin: "com.microsoft.hydralab.client-util"

Learn how to apply plugins to subprojects