Hi
I'm trying to use Blueprint annotations, but something seems to fail.
One test class I annotated as follows:
@Bean(id="myId")
@Service(interfaces = (MyInterface.class),
serviceProperties = @ServiceProperty(key="variation", value="file"),
ranking=1)
public class MyImpl extends MyInterface {
What I see during the test run is only
16:27:23,218 | DEBUG | 3)-172.22.101.37 | BlueprintExtender |
rint.container.BlueprintExtender 289 | 9 - org.apache.aries.blueprint - 0.3.2
| Scanning bundle PAXEXAM-PROBE-5e054956-6469-44ce-a6e8-33142e360a3e for
blueprint annotations
16:27:23,218 | DEBUG | 3)-172.22.101.37 | BlueprintEventDispatcher |
ntainer.BlueprintEventDispatcher 123 | 9 - org.apache.aries.blueprint - 0.3.2
| Sending blueprint container event BlueprintEvent[type=FAILURE,
exception=org/apache/aries/blueprint/annotation/service/BlueprintAnnotationScanner]
for bundle PAXEXAM-PROBE-5e054956-6469-44ce-a6e8-33142e360a3e
Any way to see more details about what the exception wants to tell me?
I am using Karaf and with it blueprint core 0.4 and annotation 0.3.2 versions.
Martin