Hello Thomas,
You can have Maven dependencies which will not get included into the WAR file by setting
the scope to provided, e.g.:
| <dependency>
| <groupId>javax.servlet</groupId>
| <artifactId>jsp-api</artifactId>
| <version>2.0</version>
| <scope>provided</scope>
| </dependency>
|
What error message do you get exactly?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196056#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...