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

Need to publish to different maven repository #69

Open
chrisharris77 opened this issue Feb 6, 2021 · 7 comments
Open

Need to publish to different maven repository #69

chrisharris77 opened this issue Feb 6, 2021 · 7 comments

Comments

@chrisharris77
Copy link

JFrog have announced that JCenter will be shut down on May 1st 2021 (and will not accept new artifacts from Feb 28th 2021), so need to change the public maven repository this library is published to. Maven central is the recommended replacement, but it could be any public repository.

@durejagaurav
Copy link

How to get com.beloo.widget:ChipsLayoutManager:0.3.7 library?

@bpappin
Copy link

bpappin commented May 31, 2021

This author hasn't updated the code since 2017, so i think we are SOL, time to fork it.

@krage
Copy link

krage commented May 31, 2021

A couple options:

@bpappin
Copy link

bpappin commented May 31, 2021

@krage what do you mean via jitpack.io?

@krage
Copy link

krage commented Jun 2, 2021

Visit jitpack.io in your browser, in the form on that page enter this git repo's url, and follow the provided directions for adding it to your project.

@azzahrah
Copy link

azzahrah commented Jun 4, 2021

@krage

still problem

i have add lines

allprojects {
    repositories {
        google()
        mavenCentral()
        maven { url "https://jitpack.io" }

    }
}
    implementation 'com.github.BelooS:ChipsLayoutManager:v0.3.7'
    implementation 'com.github.pchmn:MaterialChipsInput:1.0.8'         // material chip
Execution failed for task ':app:dataBindingMergeDependencyArtifactsGeagpsDebug'.
> Could not resolve all files for configuration ':app:geagpsDebugCompileClasspath'.
   > Could not find com.beloo.widget:ChipsLayoutManager:0.3.7.
     Required by:
         project :app > com.github.pchmn:MaterialChipsInput:1.0.8

Possible solution:
 - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html

@guness
Copy link

guness commented Sep 4, 2021

@azzahrah you need to exclude it and import through jitpack as following:

    implementation 'com.github.pchmn:MaterialChipsInput:1.0.8', {
        exclude module: 'ChipsLayoutManager'
    }
    implementation 'com.github.BelooS:ChipsLayoutManager:v0.3.7'

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

6 participants