Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Lab 0.5.5 invalid dependencies #43

Open
ionspin opened this issue Mar 10, 2021 · 1 comment
Open

Lab 0.5.5 invalid dependencies #43

ionspin opened this issue Mar 10, 2021 · 1 comment

Comments

@ionspin
Copy link

ionspin commented Mar 10, 2021

Published lab 0.5.5 artifact seems to contain invalid dependency, if you look at the published module at https://dl.bintray.com/subroh0508/maven/net/subroh0508/kotlinmaterialui/lab/0.5.5/:lab-0.5.5.module you can observe a dependancy to subroh0508.net.kotlinmaterialui

...
    "dependencies": [
        {
          "group": "subroh0508.net.kotlinmaterialui",
          "module": "core",
          "version": {
            "requires": "0.5.5"
          }
        },
...

This causes gradle resolution to fail when trying to use lab library.

   > Could not find subroh0508.net.kotlinmaterialui:core:0.5.5.
     Searched in the following locations:
       - https://dl.bintray.com/subroh0508/maven/subroh0508/net/kotlinmaterialui/core/0.5.5/core-0.5.5.pom
     Required by:
         project :memento-identity-backend > net.subroh0508.kotlinmaterialui:lab:0.5.5

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


@lucgirardin
Copy link

To workaround this issue, I do:

implementation("net.subroh0508.kotlinmaterialui:core:0.5.5")
implementation("net.subroh0508.kotlinmaterialui:lab:0.5.5") {
    exclude("subroh0508.net.kotlinmaterialui", "core")
}

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

No branches or pull requests

2 participants