ARTEMIS-4335 Upgrade bcprov to bcprov-jdk18on:1.75 in security-ldap

This commit is contained in:
Domenico Francesco Bruscino 2023-07-03 10:30:52 +02:00 committed by Robbie Gemmell
parent fef7c147eb
commit 55452213a7
1 changed files with 19 additions and 0 deletions

View File

@ -62,6 +62,25 @@ under the License.
<artifactId>apacheds-server-annotations</artifactId>
<version>${directory-version}</version>
</dependency>
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-protocol-ldap</artifactId>
<version>${directory-version}</version>
<scope>test</scope>
<exclusions>
<!-- exclude bcprov-jdk15on to avoid conflicts with bcprov-jdk18on -->
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- bcprov-jdk18on replaces bcprov-jdk15on excluded from apacheds-protocol-ldap -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>