• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
4    Author: Lasse Collin <lasse.collin@tukaani.org>
5
6    This file has been put into the public domain.
7    You can do whatever you want with this file.
8-->
9
10<project xmlns="http://maven.apache.org/POM/4.0.0"
11         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
13                             http://maven.apache.org/xsd/maven-4.0.0.xsd">
14
15    <modelVersion>4.0.0</modelVersion>
16
17    <groupId>org.tukaani</groupId>
18    <artifactId>xz</artifactId>
19    <version>@VERSION@</version>
20    <packaging>jar</packaging>
21
22    <name>XZ for Java</name>
23    <description>@TITLE@</description>
24    <url>@HOMEPAGE@</url>
25
26    <licenses>
27        <license>
28            <name>Public Domain</name>
29            <comments>You can do whatever you want with this package.</comments>
30            <distribution>repo</distribution>
31        </license>
32    </licenses>
33
34    <scm>
35        <url>https://git.tukaani.org/?p=xz-java.git</url>
36        <connection>scm:git:https://git.tukaani.org/xz-java.git</connection>
37    </scm>
38
39    <developers>
40        <developer>
41            <name>Lasse Collin</name>
42            <email>lasse.collin@tukaani.org</email>
43        </developer>
44    </developers>
45
46    <contributors>
47        <contributor>
48            <!-- According to Maven docs, it's good to only list those people
49                 as <developers> that should be contacted if someone wants
50                 to talk with an upstream developer. Thus, Igor Pavlov is
51                 marked as a <contributor> even though XZ for Java simply
52                 couldn't exist without Igor Pavlov's code. -->
53            <name>Igor Pavlov</name>
54            <url>http://7-zip.org/</url>
55        </contributor>
56    </contributors>
57
58</project>
59