[ADDED] masterpassword-tests provides an API for performing runtime tests of whether the master password algorithm performs as it should on the current platform.
45 lines
1.4 KiB
XML
45 lines
1.4 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>
|
|
|
|
<!-- PROJECT METADATA -->
|
|
<parent>
|
|
<groupId>com.lyndir.masterpassword</groupId>
|
|
<artifactId>masterpassword</artifactId>
|
|
<version>GIT-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<name>Master Password Algorithm Implementation</name>
|
|
<description>The implementation of the Master Password algorithm</description>
|
|
|
|
<artifactId>masterpassword-algorithm</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<!-- DEPENDENCY MANAGEMENT -->
|
|
<dependencies>
|
|
|
|
<!-- PROJECT REFERENCES -->
|
|
<dependency>
|
|
<groupId>com.lyndir.lhunath.opal</groupId>
|
|
<artifactId>opal-system</artifactId>
|
|
<version>1.6-p8</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- EXTERNAL DEPENDENCIES -->
|
|
<dependency>
|
|
<groupId>com.lambdaworks</groupId>
|
|
<artifactId>scrypt</artifactId>
|
|
<version>1.4.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|