com.microsoft.hydralab.client-util
Owner:
OliverShen
This is the Client Util for Hydra Lab
https://github.com/microsoft/HydraLab/tree/main/gradle_plugin
Using the plugins DSL:
plugins {
id("com.microsoft.hydralab.client-util") version "1.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.microsoft.hydralab:gradle_plugin:1.1.10")
}
}
apply(plugin = "com.microsoft.hydralab.client-util")
Using the plugins DSL:
plugins {
id "com.microsoft.hydralab.client-util" version "1.1.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.microsoft.hydralab:gradle_plugin:1.1.10"
}
}
apply plugin: "com.microsoft.hydralab.client-util"