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.12 (latest)
0.1.12
Created 02 September 2024.
A plugin that checks if two jars are compatible
Using the plugins DSL:
plugins {
id("net.neoforged.jarcompatibilitychecker") version "0.1.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.neoforged.jarcompatibilitychecker:plugin:0.1.12")
}
}
apply(plugin = "net.neoforged.jarcompatibilitychecker")
Using the plugins DSL:
plugins {
id "net.neoforged.jarcompatibilitychecker" version "0.1.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.neoforged.jarcompatibilitychecker:plugin:0.1.12"
}
}
apply plugin: "net.neoforged.jarcompatibilitychecker"