Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Upgrade 9.4.6.v20170531 -> 9.4.8.v20171121:

Nevermind, sorry -

On Mon, Mar 5, 2018 at 10:57 AM, Alexander Farber <alexander.farber@xxxxxxxxx> wrote:
> Here the full log: https://gist.github.com/afarber/e91c4670b491e15c6de007b7eb1e306d

I have fixed my problem by adding the following to WAR pom.xml:

    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.1.0</version>
      <scope>provided</scope>
    </dependency>

As described in the https://www.eclipse.org/jetty/documentation/9.4.x/maven-and-jetty.html

After that the WEB-INF/lib/javax.servlet-api-3.1.0.jar has disappeared from my WAR file contents

Regards
Alex

 

Back to the top