Skip to content
Snippets Groups Projects
Commit 038441be authored by Thomas Mortagne's avatar Thomas Mortagne
Browse files

[misc] Make more obvious why we overrite the version

parent f56c79f6
No related branches found
No related tags found
No related merge requests found
......@@ -51,11 +51,11 @@
</dependency>
<!-- We need to bundle the Servlet API in the Jetty JARs. This is normally drawn transitively by the jetty-server
artifact above. However, since we declare the Servlet API dependency (javax.servlet:javax.servlet-api) with
a "provided" scope in our top level POM, the Assembly plugin doesn't include it by default. In addition
we need to specify the version so that it's the one that is required by the version of Jetty used. -->
a "provided" scope in our top level POM, the Assembly plugin doesn't include it by default. -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<!-- In addition we need to specify the version so that it's the one that is required by the version of Jetty used. -->
<version>3.1.0</version>
<optional>true</optional>
<scope>compile</scope>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment