thanks. I add a empty META-INF\beans.xml into my external jar and did : mvn clean install in that module
that fixed few injection problems, but I still got one from Spring.
Suppressed: javax.enterprise.inject.UnsatisfiedResolutionException: Unsatisfied dependency for type org.springframework.boot.logging.LoggerGroups and qualifiers [@Default]
- java member: com.comact.logging.service.SpringActuatorCustomHandling#<init>()
- declared on CLASS bean [types=[com.comact.logging.service.SpringActuatorCustomHandling], qualifiers=[@Named(value = "springActuatorCustomHandling"), @Default, @Any], target=com.comact.logging.service.SpringActuatorCustomHandling]
at io.quarkus.arc.processor.Beans.resolveInjectionPoint(Beans.java:484)
at io.quarkus.arc.processor.BeanInfo.init(BeanInfo.java:378)
at io.quarkus.arc.processor.BeanDeployment.init(BeanDeployment.java:247)
... 12 more
I try few combinaisons for :
quarkus.index-dependency.logging.group-id=org.springframework.boot
quarkus.index-dependency.logging.artifact-id=logging.LoggingSystem
try that too
quarkus.index-dependency.logging.group-id=org.springframework.boot
quarkus.index-dependency.logging.artifact-id=spring-boot
gut I always get something like that
2021-03-04 13:29:42,151 ERROR [io.qua.dep.dev.IsolatedDevModeMain] (main) Failed to start quarkus: java.lang.RuntimeException: io.quarkus.builder.BuildException: Build failure: Build failed due to errors
[error]: Build step io.quarkus.deployment.index.ApplicationArchiveBuildStep#build threw an exception: java.lang.RuntimeException: Could not resolve artifact org.springframework.boot :logging.LoggingSystem ::jar among the runtime dependencies of the application
at io.quarkus.deployment.index.ApplicationArchiveBuildStep.addIndexDependencyPaths(ApplicationArchiveBuildStep.java:156)
at io.quarkus.deployment.index.ApplicationArchiveBuildStep.scanForOtherIndexes(ApplicationArchiveBuildStep.java:122)
....
the class is located in
.m2\repository\org\springframework\boot\spring-boot\2.4.2\spring-boot-2.4.2.jar
.m2\repository\org\springframework\boot\spring-boot\2.4.2\spring-boot-2.4.2.jar!\org\springframework\boot\logging\LoggingSystem.class
what should be the correct values for : quarkus.index-dependency* ?