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 deprecation #42

Open
melihcelenk opened this issue Sep 5, 2021 · 1 comment
Open

Jcenter deprecation #42

melihcelenk opened this issue Sep 5, 2021 · 1 comment

Comments

@melihcelenk
Copy link

Hello, thank you for your work.

I am using your library with jcenter() on my gradle. However when I build I see jcenter was deprecated and instead I'm using mavenCentral() for your 1.1.10 version but it says "Unable to resolve dependency"

I tried also 1.1.7 and 1.1.5 ( by using implementation 'petrov.kristiyan:colorpicker-library:1.1.5' )

and by adding

maven { url "https://dl.bintray.com/petrovkristiyan/maven" }

into repositories, but it didn't work when I delete jcenter. And as I read jcenter will be down on 2022-02-01

@petros-kasoka
Copy link

hello, Did you find a fix for this?
I am a beginner currently facing the same kind of issues when using the above.

At the time of posting this, jcenter is already down and mavenCentral() is being used instead.

I have followed most necessary steps as well as implemented the new changes such as adding the following code into the settings.gradle rather than the build.gradle:

`pluginManagement {

repositories {

   gradlePluginPortal()

   google()

    mavenCentral()

}
}

`

dependencyResolutionManagement {

repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)

repositories {

    maven { url 'https://www.jitpack.io' }

    google()

    mavenCentral()

    //jcenter() // Warning: this repository is going to shut down soon

}

}

`

Pardon my editing.

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