xyz.sebastienm4j.gradle.typed-version
Owner: Sébastien M
This plugin provides typed objects to describe the version of a Gradle project
https://gitlab.com/SebastienM4j/gradle-typed-version
Sources: https://gitlab.com/SebastienM4j/gradle-typed-version.git
Version 0.1.0 (latest)
0.1.0
Created 26 June 2018.
A plugin that provides typed objects to describe the version of a Gradle project.
Using the plugins DSL:
plugins {
id("xyz.sebastienm4j.gradle.typed-version") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.xyz.sebastienm4j.gradle:typed-version-plugin:0.1.0")
}
}
apply(plugin = "xyz.sebastienm4j.gradle.typed-version")
Using the plugins DSL:
plugins {
id "xyz.sebastienm4j.gradle.typed-version" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.xyz.sebastienm4j.gradle:typed-version-plugin:0.1.0"
}
}
apply plugin: "xyz.sebastienm4j.gradle.typed-version"