net.neoforged.jarcompatibilitychecker
Owner: The NeoForged Project
A plugin that checks if two jars are compatible
https://github.com/neoforged/JarCompatibilityChecker
Sources: https://github.com/neoforged/JarCompatibilityChecker.git
Version 0.1.13 (latest)
Created 22 December 2024.
A plugin that checks if two jars are compatible
Add this plugin to your build using the plugins DSL:
plugins {
id("net.neoforged.jarcompatibilitychecker") version "0.1.13"
}
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("net.neoforged.jarcompatibilitychecker:net.neoforged.jarcompatibilitychecker.gradle.plugin:0.1.13") }
It can then be applied in the precompiled script plugin:plugins { id("net.neoforged.jarcompatibilitychecker") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.neoforged.jarcompatibilitychecker:net.neoforged.jarcompatibilitychecker.gradle.plugin:0.1.13") } } apply(plugin = "net.neoforged.jarcompatibilitychecker")
- Applying plugins to all subprojects .