<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
Author: Lasse Collin <[email protected]> | |
This file has been put into the public domain. | |
You can do whatever you want with this file. | |
--> | |
<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/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.tukaani</groupId> | |
<artifactId>xz</artifactId> | |
<version>@VERSION@</version> | |
<packaging>jar</packaging> | |
<name>XZ for Java</name> | |
<description>@TITLE@</description> | |
<url>@HOMEPAGE@</url> | |
<licenses> | |
<license> | |
<name>Public Domain</name> | |
<comments>You can do whatever you want with this package.</comments> | |
<distribution>repo</distribution> | |
</license> | |
</licenses> | |
<scm> | |
<url>https://git.tukaani.org/?p=xz-java.git</url> | |
<connection>scm:git:https://git.tukaani.org/xz-java.git</connection> | |
</scm> | |
<developers> | |
<developer> | |
<name>Lasse Collin</name> | |
<email>[email protected]</email> | |
</developer> | |
</developers> | |
<contributors> | |
<contributor> | |
<!-- According to Maven docs, it's good to only list those people | |
as <developers> that should be contacted if someone wants | |
to talk with an upstream developer. Thus, Igor Pavlov is | |
marked as a <contributor> even though XZ for Java simply | |
couldn't exist without Igor Pavlov's code. --> | |
<name>Igor Pavlov</name> | |
<url>http://7-zip.org/</url> | |
</contributor> | |
</contributors> | |
</project> |