-
Bug
-
Resolution: Done
-
Minor
-
None
-
None
-
None
In root pom.xml file, the wildfly-elytron-realm dependency is defined twice.
<dependency> <groupId>org.wildfly.security</groupId> <artifactId>wildfly-elytron-realm</artifactId> <version>${version.org.wildfly.security.elytron}</version> <scope>provided</scope> </dependency>
<dependency> <groupId>org.wildfly.security</groupId> <artifactId>wildfly-elytron-realm</artifactId> <version>${version.org.wildfly.security.elytron}</version> <scope>test</scope> </dependency>
The only difference between the two is the scope, one of which is provided and the other test. The scope provided also covers test so there is no need to duplicate the dependency.