Search Gradle plugins

Version 0.6.0

Created 09 June 2020.

Version Master provides an effortless and performant way to automate versioning your Android app.

Using the plugins DSL:

plugins {
  id("com.supercilex.gradle.versions") version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.supercilex.gradle:version-master:0.6.0")
  }
}

apply(plugin = "com.supercilex.gradle.versions")

Using the plugins DSL:

plugins {
  id "com.supercilex.gradle.versions" version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.supercilex.gradle:version-master:0.6.0"
  }
}

apply plugin: "com.supercilex.gradle.versions"

Learn how to apply plugins to subprojects