2014-12-08 16:11:29 +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>
|
|
|
|
<groupId>com.lyndir.masterpassword</groupId>
|
|
|
|
<artifactId>masterpassword</artifactId>
|
2016-02-21 03:29:27 +00:00
|
|
|
<version>GIT-SNAPSHOT</version>
|
2014-12-08 16:11:29 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>Master Password Site Model</name>
|
|
|
|
<description>A persistence model for Master Password sites.</description>
|
|
|
|
|
|
|
|
<artifactId>masterpassword-model</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<!-- DEPENDENCY MANAGEMENT -->
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- PROJECT REFERENCES -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.lyndir.masterpassword</groupId>
|
|
|
|
<artifactId>masterpassword-algorithm</artifactId>
|
2016-02-21 03:29:27 +00:00
|
|
|
<version>GIT-SNAPSHOT</version>
|
2014-12-08 16:11:29 +00:00
|
|
|
</dependency>
|
|
|
|
|
2015-12-25 03:26:17 +00:00
|
|
|
<!-- EXTERNAL DEPENDENCIES -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
</dependency>
|
2014-12-28 19:46:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.auto.value</groupId>
|
|
|
|
<artifactId>auto-value</artifactId>
|
|
|
|
<version>1.0-rc1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2014-12-08 16:11:29 +00:00
|
|
|
<!-- TESTING -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|