IF icon indicating copy to clipboard operation
IF copied to clipboard

Add Mojang-Mapped Version

Open UnlimitedBytes opened this issue 1 year ago • 1 comments

As of Minecraft 1.20.5, the Paper server runtime is now Mojang-mapped, meaning that many plugins are beginning to adopt Mojang's official mappings. To ensure compatibility with the latest versions of Paper and to support plugin developers who use Mojang mappings, it would be beneficial to add a Mojang-mapped version of the IF to maven.

UnlimitedBytes avatar Aug 26 '24 00:08 UnlimitedBytes

Hi! I'm providing a mojang-mapped version of IF on my fork KabanFriends/IF, and the artifacts are available on Jitpack.

  • Add Jitpack as a dependency repository:
repositories {
    maven("https://jitpack.io/")
}
  • Use my version of IF instead of the original one:
dependencies {
-   implementation("com.github.stefvanschie.inventoryframework:IF:0.10.18")
+   implementation("com.github.KabanFriends.IF:IF:v0.10.18-mojang")
}

KabanFriends avatar Nov 27 '24 18:11 KabanFriends