I was able to fix my project by correcting the entry on the pom.xml file. It is just
changing the group id to a slightly different path and updating the version number.
Before:
<dependency>
| <groupId>jboss</groupId>
| <artifactId>jbossall-client</artifactId>
| <version>4.2.2.GA</version>
| </dependency>
After:
<dependency>
| <groupId>org.jboss.client</groupId>
| <artifactId>jbossall-client</artifactId>
| <version>4.2.3.GA</version>
| </dependency>
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4197754#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...