πŸ”₯Introduction to Mineject


What is Mineject?

Mineject is a framework designed to simplify the creation of projects for platforms like Spigot, BungeeCord, and others. The project that particularly inspired me was EternalCorearrow-up-right by EternalCodeTeamarrow-up-right, which implemented the technique of dependency injection. This is my first project of this kind, so I realize it may not be flawless, but I'm very satisfied with the final result.

Additionally, Mineject allows developers to use it without the need to code specifically for a given platform, such as Spigot or BungeeCord.


How do I implement it to my project?

repositories {
    maven("https://jitpack.io")
}

dependencies {
    implementation("com.github.failutee.Mineject:mineject-core:{TAG}")
}

Remember to replace {TAG} with the tag version from GitHub. In the example below, the Tag will be 1.0.0

Last updated