com.microsoft.identity.buildsystem
Owner: Shane Oatman
Gradle plugin to encapsulate custom build tasks and configuration for AuthClient android projects.
Sources: https://github.com/AzureAD/android-complete/tree/master/plugins/buildsystem
Version 0.2.3 (latest)
0.2.3
Created 24 November 2021.
Gradle plugin to encapsulate custom build tasks and configuration for AuthClient android projects.
Using the plugins DSL:
plugins {
id("com.microsoft.identity.buildsystem") version "0.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.microsoft.identity:MSIDAndroid:0.2.3")
}
}
apply(plugin = "com.microsoft.identity.buildsystem")
Using the plugins DSL:
plugins {
id "com.microsoft.identity.buildsystem" version "0.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.microsoft.identity:MSIDAndroid:0.2.3"
}
}
apply plugin: "com.microsoft.identity.buildsystem"