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

Testacles dependency import failing because of missing dependency: io.github.juanchosaravia.autodsl:annotation:0.0.11 #12

Open
amolpednekar opened this issue Nov 15, 2022 · 0 comments

Comments

@amolpednekar
Copy link

Importing Corda testacles in gradle fails because dependency io.github.juanchosaravia.autodsl:annotation:0.0.11 is not available on mavenCentral

Gradle error:

Execution failed for task ':workflows:compileTestKotlin'.
> Could not resolve all files for configuration ':workflows:testCompileClasspath'.
   > Could not find io.github.juanchosaravia.autodsl:annotation:0.0.11.

Dependency from testacles library: https://mvnrepository.com/artifact/io.github.juanchosaravia.autodsl/annotation/usages
0.0.11

Current fix:

Add jcenter() to list of gradle repositories

repositories {
    mavenLocal()
    mavenCentral()
    .
    .
    jcenter()
}

Long term fix: Since jcenter is deprecated by gradle, switch to 0.0.10 dependency of annotation in source library.

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

1 participant