You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gradle is unable to locate the following dependency referred in Quarkus https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.30/snakeyaml-1.30-android.jar
org.yaml:snakeyaml:1.30 do exist in MavenCentral but Gradle's dependency resolution also includes the android classifier that creates dependency on org.yaml:snakeyaml:1.30-android - which doesn't exist
I think it can be fixed if you remove <classifier>android</classifier> from the snakeyaml dependency.
Build tool (ie. output of mvnw --version or gradlew --version)
Gradle 7.4.2
The text was updated successfully, but these errors were encountered:
I started getting this error after I upgraded Quarkus to 2.7.0 in this release snakeyaml was upgraded from 1.29 to 1.30 which made me believe that it is stemming from the upgrade as all the prior releases of Quarkus works fine
Describe the bug
Gradle is unable to locate the following dependency referred in Quarkus
https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.30/snakeyaml-1.30-android.jar
org.yaml:snakeyaml:1.30
do exist in MavenCentral but Gradle's dependency resolution also includes the android classifier that creates dependency onorg.yaml:snakeyaml:1.30-android
- which doesn't existI think it can be fixed if you remove
<classifier>android</classifier>
from the snakeyaml dependency.Build tool (ie. output of
mvnw --version
orgradlew --version
)Gradle 7.4.2
The text was updated successfully, but these errors were encountered: