Additional fix OPENDJ-1131: Rest2LDAP fails to start with GlassFish3.1
* change json-resource-servlet dependency scope to "compile" for better dependency resolution when building HTTP connection handler in OpenDJ
* unfortunately this means that we need "include" filters when building the WAR.
| | |
| | | <groupId>org.forgerock.commons</groupId> |
| | | <artifactId>json-resource-servlet</artifactId> |
| | | <version>${forgerockRestVersion}</version> |
| | | <scope>provided</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <!-- Required for runtime via WAR overlay --> |
| | |
| | | <groupId>org.forgerock.commons</groupId> |
| | | <artifactId>json-resource-servlet</artifactId> |
| | | <classifier>servlet</classifier> |
| | | <includes> |
| | | <include>WEB-INF/*.xml</include> |
| | | </includes> |
| | | </overlay> |
| | | </overlays> |
| | | </configuration> |