It would be nice to remove the spring-beans dependency:
--- a/micronaut-camunda-bpm-feature/build.gradle
+++ b/micronaut-camunda-bpm-feature/build.gradle
@@ -24,6 +24,7 @@ dependencies {
implementation("io.micronaut:micronaut-runtime")
api("org.camunda.bpm:camunda-engine:$camundaVersion") {
exclude group: 'org.camunda.bpm.model', module: 'camunda-cmmn-model'
+ exclude group: 'org.springframework', module: 'spring-beans'
}
compileOnly("io.micronaut.servlet:micronaut-servlet-engine")
However, this is currently being used to determine the resources in the classpath.
Is there a better way?
It would be nice to remove the spring-beans dependency:
However, this is currently being used to determine the resources in the classpath.
Is there a better way?