Search Gradle plugins

Version 0.1.0 (latest)

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"

Learn how to apply plugins to subprojects