Search Gradle plugins

Version 0.0.1 (latest)

Created 02 December 2023.

Plugin for configuring a project version in build.number file

Using the plugins DSL:

plugins {
  id("io.github.raymank26.build-number") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.raymank26:plugin:0.0.1")
  }
}

apply(plugin = "io.github.raymank26.build-number")

Using the plugins DSL:

plugins {
  id "io.github.raymank26.build-number" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.raymank26:plugin:0.0.1"
  }
}

apply plugin: "io.github.raymank26.build-number"

Learn how to apply plugins to subprojects