简体   繁体   中英

Build failed : Cannot find JAR 'aws-java-sdk-core-1.11.948.jar' SpringBoot

I'm trying to run spring boot project, but i get this error.

any idea what error is this?

Cannot find JAR 'aws-java-sdk-core-1.11.948.jar' required by module 'gradle-resources-s3' using classpath or distribution directory '/home/mbunderline76/.gradle/wrapper/dists/gradle-7.3.2-bin/4k4cn06q0rruwh9dpndf9gmi8/gradle-7.3.2'

You need to add dependency for the jar required by your gradle version. Trying adding this dependency and refreshing your gradle.

implementation group: 'com.amazonaws', name: 'aws-java-sdk-core', version: '1.11.948'

or

implementation 'com.amazonaws:aws-java-sdk-core:1.11.948'

Running on M1 Mac with Kotlin, Adding

configurations.all {
resolutionStrategy {
    force ("software.amazon.awssdk.crt:aws-crt:0.16.12")
    }
}

to the build.gradle.kts file (don't forget to refresh) worked for me as a work around per this( https://github.com/awslabs/aws-sdk-kotlin/issues/473 ) github issue

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM