Hello all
The sis-webapp module currently depends on javax.servlet.javax-api
version 2.4. I would like to make two changes:
* Replace this dependency by javaee-api version 6.0.
* Declare <scope>provided</scope>
The reason is that the servlet API is now in version 3.0, but no 3.0
version is going to be deployed on Maven central. Instead, the whole
stack (servlet-api and other dependencies) has been replaced by a single
javaee-api dependency, which I agree make things simpler :-).
The <scope>provided</scope> is because those classes are supposed to be
provided by the JEE container rather than by the application.
There is nothing to change in the source code. I verified that the Maven
tests continue to pass. Is there any objection against this change?
Martin