Additional fix for OPENDJ-175: Decouple OpenDJ LDAP SDK from Grizzly
The adapter only requires opendj-core, not opendj-ldap-sdk. This was causing the server to pull in the core twice, once as opendj-core and once as part of opendj-ldap-sdk.
| | |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.forgerock.opendj</groupId> |
| | | <artifactId>opendj-ldap-sdk</artifactId> |
| | | <artifactId>opendj-core</artifactId> |
| | | <version>${project.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | |
| | | <scope>test</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.forgerock.opendj</groupId> |
| | | <artifactId>opendj-grizzly</artifactId> |
| | | <version>${project.version}</version> |
| | | <scope>test</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.sleepycat</groupId> |
| | | <artifactId>je</artifactId> |
| | | <version>4.1.21</version> |