[jboss-user] [JBossCache] - Re: Maven and CR2
FredrikJ
do-not-reply at jboss.com
Mon Jun 4 08:20:42 EDT 2007
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
More information about the jboss-user
mailing list