temportalist.automata
Owner:
The Temportalist
Gradle plugin for Minecraft ForgeGradle to make build scripts lighter and add more configurability to mods
https://github.com/TheTemportalist/AutomataGradlePlugin
Sources: git://github.com/TheTemportalist/AutomataGradlePlugin.git
Version 0.0.1.57 (latest)
Created 17 June 2016.
Gradle plugin for Minecraft ForgeGradle to make build scripts lighter and add more configurability to mods
Add this plugin to your build using the plugins DSL:
plugins {
id("temportalist.automata") version "0.0.1.57"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("temportalist.automata:temportalist.automata.gradle.plugin:0.0.1.57") }
It can then be applied in the precompiled script plugin:plugins { id("temportalist.automata") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("temportalist.automata:temportalist.automata.gradle.plugin:0.0.1.57") } } apply(plugin = "temportalist.automata")
- Applying plugins to all subprojects .