I added this picketlink dependency in my pom file :
<dependency>
<groupId>org.picketlink</groupId>
<artifactId>picketlink</artifactId>
<version>2.7.1.Final</version>
</dependency>
I am getting this error :
WELD-001414: Bean name is ambiguous. Name dsWindowContext resolves to beans
The dependency i am adding is an UberJar, that has Deltaspike JAR in it, which is causing a conflict, since apparently Deltaspike is already imported inside my project, but i can't find in my pom.xml.
I am using Wildfly 10, JEE 7, Picketlink 2.7, how can i delete Deltaspike and where can i find it ?