bordercastle/maven/pom/boca-util.xml

31 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-util</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>org.bordercastle</groupId>
<artifactId>boca-parent</artifactId>
<version>${bordercastle.version}</version>
</parent>
<name>BorderCastle Utilities</name>
<description>
The Bouncy Castle utility classes.
This jar contains a collection of classes which do not need to be in the JCE provider
jar, but are used by the other APIs. 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-light</artifactId>
<version>${bordercastle.version}</version>
</dependency>
<dependency>
<groupId>org.bordercastle</groupId>
<artifactId>boca-prov</artifactId>
<version>${bordercastle.version}</version>
</dependency>
</dependencies>
</project>