BurstLinker icon indicating copy to clipboard operation
BurstLinker copied to clipboard

Maven repository doesn't work anymore

Open Cryolitia opened this issue 1 year ago • 0 comments

Because of the close of JCenter, I could not find the binary to use on the Internet. So I forked it and published it on Github Packages with the highest respect.

Everyone could use it by following steps:

  1. Add following codes in settings.gradle
dependencyResolutionManagement {
    repositories {
        maven {
            url = uri("https://maven.pkg.github.com/Cryolitia/BurstLinker")
            credentials {
                username = "Cryolitia"
                password = "9sb2n1ZvKGNMSzXqd0vIxX4nJJuRQHMOc3pf_phg".reverse()
            }
        }
        //other repositories……
    }
}
  1. use implementation("com.bilibili:burstlinker:0.0.13") in dependencies

Then, just enjoy it! ^_^

I honestly appreciate the work that all developers had done, I would be grateful if you could republish it on Github Packages or other maven repository, thanks.

My fork is https://github.com/Cryolitia/BurstLinker

Cryolitia avatar Oct 26 '22 17:10 Cryolitia