Search Gradle plugins

Version 0.0.8-2

Created 30 March 2019.

Keeps track of buildnumbers and the like persistently

Using the plugins DSL:

plugins {
  id("moe.nikky.persistentCounter") version "0.0.8-2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("moe.nikky:persistentCounter:0.0.8-2")
  }
}

apply(plugin = "moe.nikky.persistentCounter")

Using the plugins DSL:

plugins {
  id "moe.nikky.persistentCounter" version "0.0.8-2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "moe.nikky:persistentCounter:0.0.8-2"
  }
}

apply plugin: "moe.nikky.persistentCounter"

Learn how to apply plugins to subprojects