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.
| | |
| | | <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> |