Closed kolotyluk closed 3 years ago
Caused by: org.gradle.internal.resolve.ModuleVersionResolveException: Could not resolve io.projectreactor:reactor-kotlin-extensions:1.1.3.
Caused by: org.gradle.api.resources.ResourceException: Could not get resource 'https://fispan-dev-500404063477.d.codeartifact.us-east-2.amazonaws.com/maven/fispan-platform/io/projectreactor/reactor-kotlin-extensions/1.1.3/reactor-kotlin-extensions-1.1.3.pom'.
There seems to be something wrong with your repositories configuration, or the proxy maven repository that you seem to use doesn't mirror artifacts from the reactor-kotlin-extensions
project.
The library is available on Maven Central (see https://search.maven.org/artifact/io.projectreactor.kotlin/reactor-kotlin-extensions for the list of versions).
Note that if you use reactor-core
3.3.x, you need the Dysprosium release train so you'd need a 1.0.x version of kotlin-extensions. Even better, rather than providing an explicit version for all components (and risk having inconsistent versions), use the BOM.
When I add the following to my build.gradle.kts file
My code fails to build and run.
Expected Behavior
The code should just build and run.
Actual Behavior
Steps to Reproduce
implementation("io.projectreactor:reactor-kotlin-extensions:1.1.3")
to my build.gradle.kts file creates the problemI am trying to use reactor-kotlin-extensions because I get a warning in my tests
with
Possible Solution
Maybe this is not a defect so much as as documentation problem. I feel like I am in a Catch-22 situation where I can't win... the compiler complains about deprecated methods, but when I try to address that, the code won't compile against the
reactor-kotlin-extensions
library. I am just following the Gradle example in this project...Your Environment
netty
, ...): JUnit 5java -version
): "11.0.10" 2021-01-19uname -a
): Darwin ip-192-168-0-25.us-east-2.compute.internal 20.3.0 Darwin Kernel Version 20.3.0: Thu Jan 21 00:07:06 PST 2021; root:xnu-7195.81.3~1/RELEASE_X86_64 x86_64