On Wed, Oct 14, 2015 at 04:22:48PM +0200, helix84 wrote:
> You should rebuild using "mvn clean package ...".
> "clean" is the important part which makes sure that old versions of jars
> don't hang around and cause problems.
That is generally good advice, but...servlet-api will still be there.
It harms nothing; it's just messy. The message is telling us that the
JAR was ignored, per the Servlet specification, because the container
provides one copy for all webapp.s.
One of our dependencies has an incorrect compile-scoped dependency on
servlet-api. (servlet-api should always be scoped 'provided').
There's a pull request (
https://github.com/DSpace/DSpace/pull/953) for
a patch which corrects that.
The actual show-stopper problem is something else.