NulaCore
Core library containing shared code for my modifications.
Detailed documentation can be found at: https://sidgames5.github.io/javadocs/nulacore/1.0/
Versioning System
The library follows SemVer 2 specification using the major.minor.patch format.
Jar file naming format: nulacore-
Version Usage Example
If your mod requires NulaCore version 1.3, you can use any versions starting from 1.3 and above. Version 1.2 is not suitable for this purpose.
Integrating NulaCore into Your Project
Gradle Configuration
Add my repository to the repositories section of your build.gradle file:
repositories {
maven {
url "https://repo.repsy.io/mvn/sidgames5/sidgames5"
}
}
Then include the package in the dependencies section:
dependencies {
modImplementation("dev.sidgames:nulacore:1.0.0")
}