Owner:
BouncingElf10
A gradle plugin that tests if your mod is compatible with other versions automatically
https://github.com/BouncingElf10/MinecraftVersionCompatibilityChecker
Sources: https://github.com/BouncingElf10/MinecraftVersionCompatibilityChecker
Version 1.1.0 (latest)
Created 18 March 2026.
A gradle plugin that tests if your mod is compatible with other versions automatically
Add this plugin to your build using the plugins DSL:
plugins {
id("com.bouncingelf10.minecraft-version-compatibility-checker") version "1.1.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.bouncingelf10.minecraft-version-compatibility-checker:com.bouncingelf10.minecraft-version-compatibility-checker.gradle.plugin:1.1.0") }It can then be applied in the precompiled script plugin:plugins { id("com.bouncingelf10.minecraft-version-compatibility-checker") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.bouncingelf10.minecraft-version-compatibility-checker:com.bouncingelf10.minecraft-version-compatibility-checker.gradle.plugin:1.1.0") } } apply(plugin = "com.bouncingelf10.minecraft-version-compatibility-checker") - Applying plugins to all subprojects .