Repository
Github packages:
// build.gradle.kts
maven("https://maven.pkg.github.com/RediCloud/cloud-v2") {
credentials {
username = project.findProperty("github_username") as String? ?: System.getenv("GITHUB_USERNAME")
password = project.findProperty("github_token") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
The following packages are currently included on github packages:
More information about github packages:
Create your own personal access token:
You can create your token here: https://github.com/settings/tokens?type=beta
(Read-only permission should be enough access github packages)
More information: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens
Last updated