update to latest bom
[storage-units.git] / pom.xml
blob650887e0a2f7ed88854bda176f59eefa2d184ef5
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
4     This is free and unencumbered software released into the public domain.
6     Anyone is free to copy, modify, publish, use, compile, sell, or
7     distribute this software, either in source code form or as a compiled
8     binary, for any purpose, commercial or non-commercial, and by any
9     means.
11     In jurisdictions that recognize copyright laws, the author or authors
12     of this software dedicate any and all copyright interest in the
13     software to the public domain. We make this dedication for the benefit
14     of the public at large and to the detriment of our heirs and
15     successors. We intend this dedication to be an overt act of
16     relinquishment in perpetuity of all present and future rights to this
17     software under copyright law.
19     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21     MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
22     IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23     OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24     ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25     OTHER DEALINGS IN THE SOFTWARE.
27     For more information, please refer to <http://unlicense.org>
29 -->
30 <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">
31   <modelVersion>4.0.0</modelVersion>
33   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34   <!--                                 PARENT                                  -->
35   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
36   <parent>
37     <groupId>com.github.sebhoss</groupId>
38     <artifactId>java-parent</artifactId>
39     <version>2.0.3-SNAPSHOT</version>
40   </parent>
42   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
43   <!--                               INFORMATIONS                              -->
44   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
45   <artifactId>storage-units</artifactId>
46   <version>2.0.1-SNAPSHOT</version>
47   <inceptionYear>2012</inceptionYear>
48   <url>https://github.com/sebhoss/storage-units</url>
49   <name>Storage Units</name>
50   <description>Implementation of storage units according to ISO IEC 80000-13:2008.</description>
52   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
53   <!--                                  SOURCE                                 -->
54   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
55   <scm>
56     <connection>scm:git:git://github.com/sebhoss/storage-units.git</connection>
57     <developerConnection>scm:git:git@github.com:sebhoss/storage-units.git</developerConnection>
58     <tag>master</tag>
59     <url>${project.url}</url>
60   </scm>
62   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
63   <!--                                PROPERTIES                               -->
64   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
65   <properties>
66     <version.bom>2016.01.17</version.bom>
67   </properties>
69   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
70   <!--                               DEPENDENCIES                              -->
71   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
72   <dependencyManagement>
73     <dependencies>
74       <dependency>
75         <groupId>com.github.sebhoss.bom</groupId>
76         <artifactId>auto-managed</artifactId>
77         <version>${version.bom}</version>
78         <type>pom</type>
79         <scope>import</scope>
80       </dependency>
81     </dependencies>
82   </dependencyManagement>
83   <dependencies>
84     <dependency>
85       <groupId>com.github.sebhoss</groupId>
86       <artifactId>suppress-warnings</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>junit</groupId>
90       <artifactId>junit</artifactId>
91       <scope>test</scope>
92     </dependency>
93   </dependencies>
95 </project>