fr.scarex.fcgp
Owner: SCAREX
Forge Changelog Gradle Plugin
http://github.com/SCAREXgaming/ForgeChangelogGradlePlugin
Sources: http://github.com/SCAREXgaming/ForgeChangelogGradlePlugin
Using the plugins DSL:
plugins {
id("fr.scarex.fcgp") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.SCAREXgaming:ForgeChangelogGradlePlugin:1.0.4")
}
}
apply(plugin = "fr.scarex.fcgp")
Using the plugins DSL:
plugins {
id "fr.scarex.fcgp" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.SCAREXgaming:ForgeChangelogGradlePlugin:1.0.4"
}
}
apply plugin: "fr.scarex.fcgp"