pin versions
[generic-types.git] / pom.xml
blobd6076cba5541cb31fe8efbf3116d555be3485aec
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
4     This file is part of generic-types. 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 generic-types,
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.07.02-120434</version>
21   </parent>
23   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
24   <!--                               COORDINATES                               -->
25   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
26   <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
27   <groupId>de.xn__ho_hia.utils.types</groupId>
28   <artifactId>generic-types</artifactId>
29   <version>2.0.0-${revision}</version>
31   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
32   <!--                               INFORMATIONS                              -->
33   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35   <name>Generic Types</name>
36   <description>Utility/factory to create generic types</description>
37   <url>http://seb.xn--ho-hia.de/generic-types</url>
38   <inceptionYear>2016</inceptionYear>
40   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41   <!--                                    SCM                                  -->
42   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
43   <!-- https://maven.apache.org/pom.html#SCM -->
44   <scm>
45     <connection>scm:git:git://github.com/sebhoss/generic-types.git</connection>
46     <developerConnection>scm:git:git@github.com:sebhoss/generic-types.git</developerConnection>
47     <tag>master</tag>
48     <url>https://github.com/sebhoss/generic-types</url>
49   </scm>
51   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
52   <!--                             ISSUE MANAGEMENT                            -->
53   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
54   <!-- https://maven.apache.org/pom.html#Issue_Management -->
55   <issueManagement>
56     <system>GitHub</system>
57     <url>https://github.com/sebhoss/generic-types/issues</url>
58   </issueManagement>
60   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
61   <!--                               CI MANAGEMENT                             -->
62   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
63   <!-- https://maven.apache.org/pom.html#Continuous_Integration_Management -->
64   <ciManagement>
65     <system>Travis</system>
66     <url>https://travis-ci.org/sebhoss/generic-types</url>
67   </ciManagement>
69   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
70   <!--                          DISTRIBUTION MANAGEMENT                        -->
71   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
72   <!-- https://maven.apache.org/pom.html#Distribution_Management -->
73   <distributionManagement>
74     <site>
75       <id>github</id>
76       <name>GitHub Pages</name>
77       <url>http://seb.xn--ho-hia.de/generic-types/</url>
78     </site>
79   </distributionManagement>
81   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
82   <!--                                PROPERTIES                               -->
83   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
84   <!-- https://maven.apache.org/pom.html#Properties -->
85   <properties>
86     <revision>SNAPSHOT</revision>
87   </properties>
89   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
90   <!--                                DEPENDENCIES                             -->
91   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
92   <!-- https://maven.apache.org/pom.html#Dependencies -->
93   <dependencies>
94     <dependency>
95       <groupId>de.xn--ho-hia.quality</groupId>
96       <artifactId>suppress-warnings</artifactId>
97       <version>4.0.0-20160619211629</version>
98     </dependency>
99     <dependency>
100       <groupId>de.xn--ho-hia.quality</groupId>
101       <artifactId>null-analysis</artifactId>
102       <version>3.0.1-20160702153702</version>
103     </dependency>
104   </dependencies>
106 </project>