com.microsoft.hydralab.client-util
Owner: OliverShen
This is the Client Util for Hydra Lab
https://github.com/microsoft/HydraLab/tree/main/gradle_plugin
Sources: https://github.com/olivershen-wow/HydraLabClient.git
Version 1.1.15 (latest)
1.1.15
Created 25 January 2024.
This is the Client Util for Hydra Lab
Using the plugins DSL:
plugins {
id("com.microsoft.hydralab.client-util") version "1.1.15"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.microsoft.hydralab:gradle_plugin:1.1.15")
}
}
apply(plugin = "com.microsoft.hydralab.client-util")
Using the plugins DSL:
plugins {
id "com.microsoft.hydralab.client-util" version "1.1.15"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.microsoft.hydralab:gradle_plugin:1.1.15"
}
}
apply plugin: "com.microsoft.hydralab.client-util"