Dear *,

Yesterday someone asked me how to include  javax.servlet-3.0.jar in his JBoss AS 7 Project in using Maven.

My answer was to go to the JBoss community repository web interface – see URL below –
and search for the “servlet-api” then insert in his project’s pom.xml the follwoing content under the <dependencies></dependencies> stanzas :

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0</version>

<scope>provided</scope>

</dependency>

Rem : https://repository.jboss.org/nexus/index.html

BR

Frederic 😉