repositories {
maven("https://maven.pkg.github.com/SBNTT/mpp-game-glfw") {
credentials {
username = "SBNTT-robot"
password = String(Base64.getDecoder().decode("Z2hwX3VoTENMZ2xBa3dmdmdPRjRSRDBodDl6RFNqUGdCOTBjZnBONw=="))
}
}
}
dependencies {
implementation("me.sbntt.mppgame:glfw:$glfwVersion-vulkan.$vulkanVersion")
}
This credentials uses a personal access token with only the read:packages
scope ;)
It can be freely used as downloading from GitHub packages requires authentication...
import me.sbntt.mppgame.glfw.*