You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.8 KiB
59 lines
1.8 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
Author: Lasse Collin <lasse.collin@tukaani.org>
|
|
|
|
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>lasse.collin@tukaani.org</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>
|