Search Gradle plugins

Version 0.5.0-rc.6

Created 14 December 2023.

Manage project versions automatically with git tags

Using the plugins DSL:

plugins {
  id("com.javiersc.semver.project") version "0.5.0-rc.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.javiersc.semver:semver-project-gradle-plugin:0.5.0-rc.6")
  }
}

apply(plugin = "com.javiersc.semver.project")

Using the plugins DSL:

plugins {
  id "com.javiersc.semver.project" version "0.5.0-rc.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.javiersc.semver:semver-project-gradle-plugin:0.5.0-rc.6"
  }
}

apply plugin: "com.javiersc.semver.project"

Learn how to apply plugins to subprojects