Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Parent POM

All the Java-based Shibboleth projects have a POM file that inherits the net.shibboleth:parent:*. This parent POM, found in the java-parent-project project, contains:

...

Code Block
xml
xml
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
</dependency>

And the The fact that the version we use is 23.1.5 0 and that this artifact has a scope of provided will be inherited from the parent POM.

...