Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JCenter has shutdown #28

Open
CarlAmko opened this issue May 15, 2021 · 1 comment
Open

JCenter has shutdown #28

CarlAmko opened this issue May 15, 2021 · 1 comment

Comments

@CarlAmko
Copy link

As of May 1, 2021, JCenter is no longer hosting artifacts.

Please migrate the artifacts to Maven Central or an alternate hosting location.

@CyxouD
Copy link

CyxouD commented Sep 13, 2023

For now, you can add JCenter to your repositories in settings.gradle. Mine looks like this:

pluginManagement {
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        //noinspection JcenterRepositoryObsolete It is needed to add "com.dinuscxj.progressbar.CircleProgressBar" dependency which is available only at JCenter
        jcenter()
    }
}

// ....

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants