Hello,
I have added following dependency to my pom.xml -
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-servicebus</artifactId>
<version>3.0.0</version>
<scope>provided</scope>
</dependency>
Build is successful, but bundle says cannot resolve it. So, I added it to export package -
<Export-Package>
com.microsoft.azure.servicebus.*;
</Export-Package>
now it resolves the service-bus dependency, but there are several other dependencies that bundle can't resolve, example -
om.microsoft.azure.proton.transport.proxy -- Cannot be resolved
com.microsoft.azure.proton.transport.proxy.impl -- Cannot be resolved
com.microsoft.azure.proton.transport.ws -- Cannot be resolved
com.microsoft.azure.proton.transport.ws.impl -- Cannot be resolved
io.netty.handler.codec.http,version=[4.1,5) -- Cannot be resolved
..
If I add all these dependencies, some in export package/import-package it resolves all but local instance is extremely slow and crashes.Is there better way to add the dependencies required for azure service-bus ?
Thank You!