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

Broken multiplatform deploy on 0.4.0-alpha-3 #27

Closed
altavir opened this issue Jun 13, 2020 · 1 comment
Closed

Broken multiplatform deploy on 0.4.0-alpha-3 #27

altavir opened this issue Jun 13, 2020 · 1 comment

Comments

@altavir
Copy link

altavir commented Jun 13, 2020

Currently, the multiplatform artifact is not resolved from common. Probably something went wrong with the deploy, or older gradle metadata is not resolved from gradle 6+. The workaround is to declare platform-specific dependencies including the metadata artifact:

    commonMain {
        dependencies {
            implementation("com.github.h0tk3y.betterParse:better-parse-multiplatform:0.4.0-alpha-3")
            implementation("com.github.h0tk3y.betterParse:better-parse-multiplatform-metadata:0.4.0-alpha-3")
        }
    }
    jvmMain{
        dependencies{
            implementation("com.github.h0tk3y.betterParse:better-parse-jvm:0.4.0-alpha-3")
        }
    }
    jsMain{
        dependencies{
            implementation("com.github.h0tk3y.betterParse:better-parse-js:0.4.0-alpha-3")
        }
    }
@h0tk3y
Copy link
Owner

h0tk3y commented Jul 1, 2020

Should be fixed now with the 0.4.0 release. Note: the 0.4.0 release won't work for Kotlin 1.4-M2 in multiplatform projects, please use the separate 0.4.0-1.4-M2 version.

@h0tk3y h0tk3y closed this as completed Jul 1, 2020
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