Easy Eula
This compact Minecraft mod solves a common problem when launching servers. Instead of needing to restart the server to accept the license agreement (EULA), you can simply confirm it directly from the console.
For Developers
The mod can be easily integrated into your projects by adding the dependency to the build.gradle file:
repositories {
maven { url "https://api.modrinth.com/maven" }
}
dependencies {
modImplementation("maven.modrinth:easy-eula:1.1.0-fabric") // Or -forge
}
If additional functionality is required, the EULA can also be accepted programmatically through code:
EasyEula.acceptEula();
This is particularly convenient for test mods operating in automated environments.