2012-07-04 22:09:03 +00:00
|
|
|
<?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>
|
2014-08-25 02:42:42 +00:00
|
|
|
<groupId>com.lyndir.masterpassword</groupId>
|
2012-07-04 22:09:03 +00:00
|
|
|
<artifactId>masterpassword</artifactId>
|
2016-02-21 03:29:27 +00:00
|
|
|
<version>GIT-SNAPSHOT</version>
|
2012-07-04 22:09:03 +00:00
|
|
|
</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>
|
2015-12-25 03:26:17 +00:00
|
|
|
<version>1.6-p9</version>
|
2015-12-18 17:41:31 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-07-04 22:09:03 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- EXTERNAL DEPENDENCIES -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.lambdaworks</groupId>
|
|
|
|
<artifactId>scrypt</artifactId>
|
2014-08-28 02:08:53 +00:00
|
|
|
<version>1.4.0</version>
|
2012-07-04 22:09:03 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|