bordercastle/maven/pom/boca-mls.xml

74 lines
2.9 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>boca-mls</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>org.bordercastle</groupId>
<artifactId>boca-parent</artifactId>
<version>${bordercastle.version}</version>
</parent>
<name>BorderCastle MLS</name>
<description>
The Bouncy Castle MLS implementation.
This jar contains APIs for JDK 1.8 and onwards. The APIs can be used in conjunction with a JCE/JCA
provider such as the one provided with the Bouncy Castle Cryptography APIs.
</description>
<dependencies>
<dependency>
<groupId>org.bordercastle</groupId>
<artifactId>boca-prov</artifactId>
<version>${bordercastle.version}</version>
</dependency>
<dependency>
<groupId>org.bordercastle</groupId>
<artifactId>boca-util</artifactId>
<version>${bordercastle.version}</version>
</dependency>
<!-- note: this module requires some .proto files to get used for generating java code
=> not currently supported by our maven pom files and thus left out
-->
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.22.3</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
<version>1.58.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-core</artifactId>
<version>1.58.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>1.58.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>1.58.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf-lite</artifactId>
<version>1.58.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-services</artifactId>
<version>1.58.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>1.58.0</version>
</dependency>
</dependencies>
</project>