model-provider
This contains all model/entity classes that are used by the provider system. This mainly includes media and provider information entities.
Use as a dependency
Step 1. Add the JitPack repository to your build file
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
// other repositories here...
mavenCentral()
maven {
url = uri("https://jitpack.io") // <-- add this
}
}
}
Content copied to clipboard
Step 2. Add the dependency
The latest version can be found here: latest tag
dependencies {
implementation("com.github.flixclusiveorg.core-stubs:model-provider:$LATEST_CORE_STUBS_VERSION")
}
Content copied to clipboard