mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noël Rouvignac
16.22.2015 52fa6f23567c5880b5256012ac5aba64493f5f8d
Simplified declared dependency for javax.servlet-api

Going from Ant to Maven, we no longer need to exclude the javax.servlet-api
transitive dependency of grizzly-framework since its scope is provided
(excluding this dependency may have been a misconfiguration of Ivy).

Furthermore, upgraded javax.servlet-api from 3.1.b02 (compiled with Java 6)
to 3.1.0 (compiled with Java 7) since OpenDJ is now compiled with Java 7 minimum.
1 files modified
8 ■■■■ changed files
opendj-server-legacy/pom.xml 8 ●●●● patch | view | raw | blame | history
opendj-server-legacy/pom.xml
@@ -178,19 +178,13 @@
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.1-b02</version>
      <version>3.1.0</version>
    </dependency>
    <dependency>
      <groupId>org.glassfish.grizzly</groupId>
      <artifactId>grizzly-http-servlet</artifactId>
      <version>${grizzly-framework.version}</version>
      <exclusions>
        <exclusion>
          <groupId>javax.servlet</groupId>
          <artifactId>javax.servlet-api</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>