jeziellago / compose-markdown

Markdown Text for Android Jetpack Compose 📋.
MIT License
508 stars 42 forks source link

Library artifacts can't be used: no artifacts uploaded #4

Closed MairwunNx closed 3 years ago

MairwunNx commented 3 years ago

Hi again, I tried to receive your library through jipack and I've a fail, I just can't use it because you don't published artifacts.

As you can see we receiving only sources as artifacts (build logs on jitpack) image

Affected published versions: 0.1.0, 0.2.0, snapshot from last commit, snapshot from master branch.

jeziellago commented 3 years ago

Hi @MairwunNx,

Check your settings.gradle and include maven { url "https://jitpack.io" }:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { url "https://jitpack.io" }  // add jitpack
    }
}

For me, it works normally.