I noticed we had some EJB TCK regressions following this update. Debugging in, it looks like OWB was tripping up with a NullPointerException because no InjectionPointService implementation was configure for it (looks like this is a new interface in OWB).
I've added these properties to TomEE's openwebbeans.properties: # New properties in OWB 2.0.11 org.apache.webbeans.container.InjectionResolver.fastMatching = false org.apache.webbeans.service.DefaultInjectionPointService.implicitSupport = false org.apache.webbeans.spi.InjectionPointService = org.apache.webbeans.service.DefaultInjectionPointService in this commit: https://github.com/apache/tomee/commit/b5ebdecbf5e7aff1bb61936cfc93177d71e59ee1 Jon
