update to latest parent & fix null issues
[storage-units.git] / pom.xml
blobb28c08c25f28d1299385b7cc0982c32441eaf278
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
4     This file is part of storage-units. 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 storage-units,
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>9999.99.99-SNAPSHOT</version>
21   </parent>
23   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
24   <!--                               COORDINATES                               -->
25   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
26   <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
27   <groupId>de.xn__ho_hia.utils.storage_units</groupId>
28   <artifactId>storage-units</artifactId>
29   <version>2.0.0-SNAPSHOT</version>
31   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
32   <!--                               INFORMATIONS                              -->
33   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35   <name>Storage Units</name>
36   <description>Implementation of storage units according to ISO IEC 80000-13:2008.</description>
37   <url>https://seb.xn--ho-hia.de/storage-units</url>
38   <inceptionYear>2012</inceptionYear>
40   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41   <!--                                    SCM                                  -->
42   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
43   <!-- https://maven.apache.org/pom.html#SCM -->
44   <scm>
45     <connection>scm:git:git://github.com/sebhoss/storage-units.git</connection>
46     <developerConnection>scm:git:git@github.com:sebhoss/storage-units.git</developerConnection>
47     <tag>master</tag>
48     <url>${project.url}</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/storage-units/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/storage-units</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>https://seb.xn--ho-hia.de/storage-units</url>
78     </site>
79   </distributionManagement>
81   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
82   <!--                               DEPENDENCIES                              -->
83   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
84   <!-- https://maven.apache.org/pom.html#Dependencies -->
85   <dependencies>
86     <dependency>
87       <groupId>de.xn--ho-hia.quality</groupId>
88       <artifactId>suppress-warnings</artifactId>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>de.xn--ho-hia.quality</groupId>
93       <artifactId>null-analysis</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>junit</groupId>
97       <artifactId>junit</artifactId>
98       <scope>test</scope>
99     </dependency>
100   </dependencies>
102 </project>