com.google.guava not deploying to console when embedded as a third party dependency
Hello Team,
I am trying to embed com.google.guava jar file as a third party dependency in my maven build. But it does not deploy to felix console. When I try to manually upload to felix console it works but not through maven build.
I am following the below steps for this.
In the main pom of the project, I am adding it as a dependency.
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
In ui.apps, I am embedding it as below.
<embedded>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<target>/apps/my-project/install</target>
</embedded>
I have the physical jar file in the above mentioned location as well. I tried similar steps for other jar files and they were deployed to felix console. But only this jar file (com.google.gauva) doesn't deploy.
Kindly suggest.