Search Gradle plugins

Version 1.0-0 (latest)

1.0-0

Created 06 September 2019.

Gradle plugin for the Simple Changelog Tool

Using the plugins DSL:

plugins {
  id("com.github.rmohammed4.gradleSct") version "1.0-0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.rmohammed4:gradle-sct:1.0-0")
  }
}

apply(plugin = "com.github.rmohammed4.gradleSct")

Using the plugins DSL:

plugins {
  id "com.github.rmohammed4.gradleSct" version "1.0-0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.rmohammed4:gradle-sct:1.0-0"
  }
}

apply plugin: "com.github.rmohammed4.gradleSct"

Learn how to apply plugins to subprojects