Search Gradle plugins

Version 0.1.1 (latest)

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"

Learn how to apply plugins to subprojects