Search Gradle plugins

de.otto.find.project-version

Owner: FT Find

A plugin for deriving the project’s version automatically. Version may stem from git tags, timestamps or similar sources

https://github.com/otto-de/gradle-projectversion

Sources: https://github.com/otto-de/gradle-projectversion.git

Version 0.4.0

0.4.0

Created 17 January 2019.

A plugin for deriving the project’s version automatically. Version may stem from git tags, timestamps or similar sources

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.otto.find.project-version") version "0.4.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.de.otto.find:gradle-projectversion:0.4.0")
      }
    }
    
    apply(plugin = "de.otto.find.project-version")
  • Applying plugins to all subprojects .