Update maintenance badge
[suppress-warnings.git] / pom.xml
blobe428ef800f929f89b0b338d5043d1eee0fc68992
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
4     This file is part of suppress-warnings. It is subject to the license terms in the LICENSE file found in the top-level
5     directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of suppress-warnings,
6     including this file, may be copied, modified, propagated, or distributed except according to the terms contained
7     in the LICENSE file.
9 -->
10 <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">
11   <modelVersion>4.0.0</modelVersion>
13   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
14   <!--                                  PARENT                                 -->
15   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
16   <!-- https://maven.apache.org/pom.html#Inheritance -->
17   <parent>
18     <groupId>de.xn--ho-hia.maven.parents</groupId>
19     <artifactId>maven-parents-java-stable</artifactId>
20     <version>2016.06.19-211242</version>
21   </parent>
23   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
24   <!--                               COORDINATES                               -->
25   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
26   <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
27   <groupId>de.xn--ho-hia.quality</groupId>
28   <artifactId>suppress-warnings</artifactId>
29   <version>4.0.0-${revision}</version>
30   <packaging>jar</packaging>
32   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33   <!--                               INFORMATIONS                              -->
34   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36   <name>Suppress Warnings</name>
37   <description>Constants for @SuppressWarnings annotations</description>
38   <url>http://seb.xn--ho-hia.de/suppress-warnings</url>
39   <inceptionYear>2013</inceptionYear>
41   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42   <!--                                    SCM                                  -->
43   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
44   <!-- https://maven.apache.org/pom.html#SCM -->
45   <scm>
46     <connection>scm:git:git://github.com/sebhoss/suppress-warnings.git</connection>
47     <developerConnection>scm:git:git@github.com:sebhoss/suppress-warnings.git</developerConnection>
48     <tag>master</tag>
49     <url>https://github.com/sebhoss/suppress-warnings</url>
50   </scm>
52   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
53   <!--                             ISSUE MANAGEMENT                            -->
54   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
55   <!-- https://maven.apache.org/pom.html#Issue_Management -->
56   <issueManagement>
57     <system>GitHub</system>
58     <url>https://github.com/sebhoss/suppress-warnings/issues</url>
59   </issueManagement>
61   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
62   <!--                               CI MANAGEMENT                             -->
63   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
64   <!-- https://maven.apache.org/pom.html#Continuous_Integration_Management -->
65   <ciManagement>
66     <system>Travis</system>
67     <url>https://travis-ci.org/sebhoss/suppress-warnings</url>
68   </ciManagement>
70   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
71   <!--                          DISTRIBUTION MANAGEMENT                        -->
72   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
73   <!-- https://maven.apache.org/pom.html#Distribution_Management -->
74   <distributionManagement>
75     <site>
76       <id>github</id>
77       <name>GitHub Pages</name>
78       <url>http://seb.xn--ho-hia.de/suppress-warnings</url>
79     </site>
80   </distributionManagement>
82   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
83   <!--                                PROPERTIES                               -->
84   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
85   <!-- https://maven.apache.org/pom.html#Properties -->
86   <properties>
87     <revision>SNAPSHOT</revision>
88     <skipTests>true</skipTests>
89     <pit.skip>true</pit.skip>
90   </properties>
92 </project>