On Wed, 2014-12-17 at 14:02 -0800, Trent DiBacco wrote: > I would like to instrument a few classes using AOP. > These classes are not service, nor are they interfaces, so I would like the > AOP to happen either compile time, or in the class loader. > I want to wrap functionality, not merely inject dependencies.
If weaving happens at compile time, without affecting depedencies, it should just work (tm). The only thing to worry about is adding extra dependencies when weaving, as these need to be reflected in the Import-Package statements in your MANIFEST.MF . This might be handled by the maven-bundle-plugin automatically ( if you use that ) or not , haven't tried it so far. Cheers, Robert
