aboutsummaryrefslogtreecommitdiff
path: root/maven/pom_template.xml
blob: 666c51a704065c0a5e217febdbcc767e00c0367a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?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>

        <contributor>
            <name>Brett Okken</name>
            <email>brett.okken.os@gmail.com</email>
        </contributor>
    </contributors>

</project>