update travis config to latest & greatest
[storage-units.git] / pom.xml
blobbd9fe1034feb7fa9c9caa8f7797586ae132ed775
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>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.storage_units</groupId>
28   <artifactId>storage-units</artifactId>
29   <version>3.1.0-${revision}</version>
30   <packaging>jar</packaging>
32   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33   <!--                               INFORMATIONS                              -->
34   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36   <name>Storage Units</name>
37   <description>Implementation of storage units according to ISO IEC 80000-13:2008.</description>
38   <url>https://seb.xn--ho-hia.de/storage-units</url>
39   <inceptionYear>2012</inceptionYear>
41   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42   <!--                                    SCM                                  -->
43   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
44   <!-- https://maven.apache.org/pom.html#SCM -->
45   <scm>
46     <connection>scm:git:git://github.com/sebhoss/storage-units.git</connection>
47     <developerConnection>scm:git:git@github.com:sebhoss/storage-units.git</developerConnection>
48     <tag>master</tag>
49     <url>${project.url}</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/storage-units/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/storage-units</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>https://seb.xn--ho-hia.de/storage-units</url>
79     </site>
80   </distributionManagement>
82   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
83   <!--                                PROPERTIES                               -->
84   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
85   <!-- https://maven.apache.org/pom.html#Properties -->
86   <properties>
87     <revision>SNAPSHOT</revision>
88   </properties>
90   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
91   <!--                               DEPENDENCIES                              -->
92   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
93   <!-- https://maven.apache.org/pom.html#Dependencies -->
94   <dependencies>
95     <dependency>
96       <groupId>de.xn--ho-hia.quality</groupId>
97       <artifactId>suppress-warnings</artifactId>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>de.xn--ho-hia.quality</groupId>
102       <artifactId>null-analysis</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.jooq</groupId>
106       <artifactId>jool</artifactId>
107       <version>0.9.11</version>
108       <scope>test</scope>
109     </dependency>
110   </dependencies>
112 </project>