com.auth0.gradle.oss-library
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.1.1 (latest)
0.1.1
Created 04 December 2016.
Gradle plugin to configure a Java/Android oss library
Using the plugins DSL:
plugins {
id("com.auth0.gradle.oss-library") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.auth0.gradle:oss-library:0.1.1")
}
}
apply(plugin = "com.auth0.gradle.oss-library")
Using the plugins DSL:
plugins {
id "com.auth0.gradle.oss-library" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.auth0.gradle:oss-library:0.1.1"
}
}
apply plugin: "com.auth0.gradle.oss-library"