The itest-implementation-spring in 2.x build is failing due to:
https://issues.apache.org/jira/browse/TUSCANY-3027
I investigated the issue. Here is the root cause:
src/main/resources/META-INF/sca/SpringDelegationHelloWorld-context.xml
defined two Spring beans that implement the same remotable java interface
HelloWorld. After the java introspection, we end up with two services with
the same name "HelloWorld" in the componentType that represents the spring
context.
How do we fix this problem?
Thanks,
Raymond