I am no maven expert or anything, but I think you want to change this
dependency:
<dependency>
| <groupId>jgroups</groupId>
| <artifactId>jgroups-all</artifactId>
| <version>2.5.0-BETA2</version>
| <exclusions>
| <exclusion>
| <artifactId>bsh</artifactId>
| <groupId>bsh</groupId>
| </exclusion>
| </exclusions>
| </dependency>
To:
<dependency>
| <groupId>jgroups</groupId>
| <artifactId>jgroups</artifactId>
| <version>2.5.0-BETA2</version>
| <exclusions>
| <exclusion>
| <artifactId>bsh</artifactId>
| <groupId>bsh</groupId>
| </exclusion>
| </exclusions>
| </dependency>
I.e., change artifactId from 'jgroups-all' to just 'jgroups'.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050913#4050913
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4050913
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user