Re: repeated calls to Activator

2022-09-17 Thread Chuck Davis
Raymond, thank you again. Your pointers directed me to the error of my ways. The problem was actually in my POM files so it looks like all I have to do is fix them and the deed will be done. I fixed two of the POM files and it solved their problem.only 13 to go! On Sat, Sep 17, 2022 at 9:28

Re: repeated calls to Activator

2022-09-17 Thread Chuck Davis
Raymond, thank you for the pointers. I have made a little progress this a.m. creating a new project -- starting from scratch. Favorable result so far -- maybe I'm off and running to find the problem I've generated. I will definitely check out your pointers as well. Thanks much. CD On Sat, Sep

Re: repeated calls to Activator

2022-09-17 Thread Raymond Augé
My suspicion is that either: A) you have the "shared" bundle's activator in an exported package, and it is detected (from the classpath) as the activator (via an imported package) in every other bundle (less likely). B) every bundle that consumes the "shared" bundle dependency, is accidentally slur

Re: repeated calls to Activator

2022-09-16 Thread Chuck Davis
I am attempting to refactor a project into bundles which number 16 presently. I have a "base" bundle that all others depend on. The activator of that bundle is getting called for every other bundle that gets activated. Is this to be expected? It seems to me the framework should only call the ac