The project is not yet ready to be used in production, although I plan to keep updating and expanding it, since I need it for my server.
There's a possibility I will eventually write some plugins for the public using this framework - I keep this option in mind while developing. Due to this reason I'm working on adding features such as support for multiple languages, which I don't need myself.
Have a great day, lost reader, and maybe come back later, when there's actually something to see here!
- Pickaxe - a closed source plugin for my server.
- Undisclosed - an unreleased, unannounced plugin that I'm working on, intended for my server and for the public.
- FallSuicidePreventer - a random single-day project created to test an early version of the framework in action.
dependencies {
implementation 'me.nicofisi:shulker-framework:VERSION'
}
repositories {
maven {
name 'ShulkerFramework-GitHub-Packages'
url 'https://maven.pkg.github.com/nicofisi/shulkerframework'
}
}
dependencies {
implementation("me.nicofisi:shulker-framework:VERSION")
}
repositories {
maven {
name = "ShulkerFramework-GitHub-Packages"
url = uri("https://maven.pkg.github.com/nicofisi/shulkerframework")
}
}
<dependency>
<groupId>me.nicofisi</groupId>
<artifactId>shulker-framework</artifactId>
<version>VERSION</version>
</dependency>
<repository>
<id>shulkerframework-github-packages</id>
<name>ShulkerFramework GitHub Packages</name>
<url>https://maven.pkg.github.com/nicofisi/shulkerframework</url>
</repository>