30 lines
1.3 KiB
XML
30 lines
1.3 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-pg</artifactId>
|
|
<packaging>jar</packaging>
|
|
<parent>
|
|
<groupId>org.bordercastle</groupId>
|
|
<artifactId>boca-parent</artifactId>
|
|
<version>${bordercastle.version}</version>
|
|
</parent>
|
|
<name>BorderCastle OpenPGP API</name>
|
|
<description>
|
|
The Bouncy Castle Java API for handling the OpenPGP protocol.
|
|
|
|
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>
|
|
</dependencies>
|
|
</project>
|