Search Gradle plugins

de.gliderpilot.semantic-release

At its core semantic-release is a set of conventions that gives you entirely automated, semver-compliant package publishing.

https://github.com/tschulte/gradle-semantic-release-plugin

Sources: https://github.com/tschulte/gradle-semantic-release-plugin

Version 1.3.0

Created 18 October 2017.

At its core semantic-release is a set of conventions that gives you entirely automated, semver-compliant package publishing.

Using the plugins DSL:

plugins {
  id("de.gliderpilot.semantic-release") version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.gliderpilot.gradle.semantic-release:gradle-semantic-release-plugin:1.3.0")
  }
}

apply(plugin = "de.gliderpilot.semantic-release")

Using the plugins DSL:

plugins {
  id "de.gliderpilot.semantic-release" version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.gliderpilot.gradle.semantic-release:gradle-semantic-release-plugin:1.3.0"
  }
}

apply plugin: "de.gliderpilot.semantic-release"

Learn how to apply plugins to subprojects