reactive-commons-java
reactive-commons-java copied to clipboard
Compile error message when using reactive-commons-java and Spring Boot
I am using the reactive-commons-java version 2.0.3 dependency for Rabbit MQ and when running the microservice I get the following error message:
> Task :rabbit-configurator:compileJava
Errors occurred while building effective model from C:\Users\lugomez\.gradle\caches\modules-2\files-2.1\org.reactivecommons\async-rabbit\2.0.3\ec19910dfe70fbce006cec5f604b1d21271089e5\async-rabbit-2.0.3.pom:
'dependencies.dependency.version' for io.projectreactor.rabbitmq:reactor-rabbitmq:jar is missing. in org.reactivecommons:async-rabbit:2.0.3
> Task :rabbit-configurator:classes
> Task :async-event-bus:compileJava
Errors occurred while building effective model from C:\Users\lugomez\.gradle\caches\modules-2\files-2.1\org.reactivecommons\async-rabbit\2.0.3\ec19910dfe70fbce006cec5f604b1d21271089e5\async-rabbit-2.0.3.pom:
'dependencies.dependency.version' for io.projectreactor.rabbitmq:reactor-rabbitmq:jar is missing. in org.reactivecommons:async-rabbit:2.0.3
This is my dependency configuration:
dependencies {
implementation project(':log')
implementation 'org.springframework:spring-context'
implementation "org.reactivecommons:async-commons-rabbit-starter:2.0.3"
implementation "org.springframework.boot:spring-boot-starter-amqp"
}
This message is presented since version 2.0.0 and checking the commit history the version of the dependency io.projectreactor.rabbitmq:reactor-rabbitmq was explicitly removed, and I think that is why the error message.
Although the error message appears, the microservice does not fail and works correctly, I would like to know what configurations should I apply to remove it?