Skip to content

Latest commit

 

History

History

model-provider

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Module 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
        }
    }
}

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")
}