com.harleyoconnor.autoupdatetool
Owner: Harley O'Connor
A Gradle plugin for automatically publishing updates to Forge projects
https://github.com/Harleyoc1/AutoUpdateTool
Sources: https://github.com/Harleyoc1/AutoUpdateTool
Version 1.0.9 (latest)
1.0.9
Created 14 August 2023.
A Gradle plugin for automatically publishing updates to Forge projects
Using the plugins DSL:
plugins {
id("com.harleyoconnor.autoupdatetool") version "1.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.harleyoconnor.autoupdatetool:plugin:1.0.9")
}
}
apply(plugin = "com.harleyoconnor.autoupdatetool")
Using the plugins DSL:
plugins {
id "com.harleyoconnor.autoupdatetool" version "1.0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.harleyoconnor.autoupdatetool:plugin:1.0.9"
}
}
apply plugin: "com.harleyoconnor.autoupdatetool"