Search Gradle plugins

Version 0.1 (latest)

0.1

Created 20 September 2019.

This plugin add a Projetc version to the project's version property

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.steinko.projectversion") version "0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.steinko.plugin:ProjectVersionPlugin:0.1")
      }
    }
    
    apply(plugin = "org.steinko.projectversion")
  • Applying plugins to all subprojects .