io.github.raymank26.build-number
Owner: Anton Ermak
Plugin for configuring a project version in build.number file
https://github.com/raymank26/gradle-build-number-plugin
Sources: https://github.com/raymank26/gradle-build-number-plugin.git
Version 0.0.1 (latest)
0.0.1
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"