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>
|
2015-04-18 21:31:12 +00:00
|
|
|
<version>1.22</version>
|
2012-07-04 22:09:03 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>Master Password</name>
|
|
|
|
<description>A Java implementation of the Master Password algorithm.</description>
|
|
|
|
|
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
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
2015-12-23 01:45:42 +00:00
|
|
|
<module>masterpassword-tests</module>
|
2012-07-04 22:09:03 +00:00
|
|
|
<module>masterpassword-algorithm</module>
|
2014-12-08 16:11:29 +00:00
|
|
|
<module>masterpassword-model</module>
|
2014-06-08 20:39:26 +00:00
|
|
|
<module>masterpassword-gui</module>
|
2012-07-04 22:09:03 +00:00
|
|
|
</modules>
|
|
|
|
|
2014-08-21 04:26:47 +00:00
|
|
|
<profiles>
|
2015-04-18 20:22:26 +00:00
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<modules>
|
|
|
|
<module>masterpassword-android</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2014-08-21 04:26:47 +00:00
|
|
|
<profile>
|
|
|
|
<id>mod:android</id>
|
|
|
|
<modules>
|
|
|
|
<module>masterpassword-android</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
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>
|