com.github.rmohammed4.gradleSct
Owner: Rafi Mohammed
Gradle plugin for the Simple Changelog Tool
https://github.com/rmohammed4/gradle-sct
Sources: https://github.com/rmohammed4/gradle-sct
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"