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>
|
|
|
|
<groupId>com.lyndir.lhunath</groupId>
|
|
|
|
<artifactId>lyndir</artifactId>
|
2013-03-29 13:05:15 +00:00
|
|
|
<version>GIT-SNAPSHOT</version>
|
2012-07-04 22:09:03 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>Master Password</name>
|
|
|
|
<description>A Java implementation of the Master Password algorithm.</description>
|
|
|
|
|
|
|
|
<groupId>com.lyndir.lhunath.masterpassword</groupId>
|
|
|
|
<artifactId>masterpassword</artifactId>
|
|
|
|
<version>GIT-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>masterpassword-algorithm</module>
|
|
|
|
<module>masterpassword-cli</module>
|
2013-12-03 13:16:32 +00:00
|
|
|
<!--module>masterpassword-android</module-->
|
2012-07-04 22:09:03 +00:00
|
|
|
</modules>
|
|
|
|
|
2012-10-23 13:21:33 +00:00
|
|
|
<!-- REMOTE ARTIFACT REPOSITORIES -->
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>lyndir</id>
|
|
|
|
<name>Lyndir Repository</name>
|
|
|
|
<url>http://maven.lyndir.com</url>
|
|
|
|
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>never</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>never</updatePolicy>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2012-07-04 22:09:03 +00:00
|
|
|
</project>
|