0

My issue is similar to https://github.com/spring-projects/spring-boot/issues/20348 but still, I am not able to find the appropriate solution. I am using apache archiva2.2.5, Gradle 6.3, and Spring boot 2.2.6.Release.

When I try to build the project, it tries to download "rsocket-bom-1.0.0-RC6.module" from my remote repository and it fails. I checked the file "rsocket-bom-1.0.0-RC6.module" doesn't exist in my remote repo neither it exists in maven central repository. Screenshot How do I resolve the issue?

avocadoLambda
  • 1,332
  • 7
  • 16
  • 33
Xerxis
  • 191
  • 1
  • 9

2 Answers2

0

Always use a stable version for development. Its just a matter of time that it will be fixed in springboot. Its nothing to do with gradle though.

Raghuveer
  • 2,859
  • 7
  • 34
  • 66
0

try this in your build.gradle file:

repositories {
    maven {
        url "https://.... your url here .../artifactory/maven-all"
        metadataSources {
            mavenPom()
            artifact()
            ignoreGradleMetadataRedirection()
        }
    }
}

It worked for me :-)

HatLess
  • 10,622
  • 5
  • 14
  • 32