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