com.auth0.gradle.oss-library.android
Owner: Auth0
Gradle plugin to configure a Java/Android oss library
https://github.com/auth0/oss-library-gradle-plugin
Sources: https://github.com/auth0/oss-library-gradle-plugin
Version 0.18.0 (latest)
0.18.0
Created 03 November 2022.
Gradle plugin to configure a Java/Android oss library
Using the plugins DSL:
plugins {
id("com.auth0.gradle.oss-library.android") version "0.18.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.auth0.gradle:oss-library:0.18.0")
}
}
apply(plugin = "com.auth0.gradle.oss-library.android")
Using the plugins DSL:
plugins {
id "com.auth0.gradle.oss-library.android" version "0.18.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.auth0.gradle:oss-library:0.18.0"
}
}
apply plugin: "com.auth0.gradle.oss-library.android"