com.bookkeepersmc.mappings-creator
Owner:
CrypticVerse
The main plugin for Mappings Creator. Includes all other plugins
https://github.com/BookkeepersMC/mappings-creator
Sources: https://github.com/BookkeepersMC/mappings-creator
Version 1.0.0 (latest)
Created 19 November 2024.
The main plugin for Mappings Creator. Includes all other plugins
Add this plugin to your build using the plugins DSL:
plugins {
id("com.bookkeepersmc.mappings-creator") version "1.0.0"
}
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("com.bookkeepersmc.mappings-creator:com.bookkeepersmc.mappings-creator.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.bookkeepersmc.mappings-creator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.bookkeepersmc.mappings-creator:com.bookkeepersmc.mappings-creator.gradle.plugin:1.0.0") } } apply(plugin = "com.bookkeepersmc.mappings-creator")
- Applying plugins to all subprojects .