Add docker based build environment
[storage-units.git] / pom.xml
blobf6f2914ec36af68036cbfaac7f24c4de1b0a9c3a
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
4     Copyright © 2012 Sebastian Hoß <mail@shoss.de>
5     This work is free. You can redistribute it and/or modify it under the
6     terms of the Do What The Fuck You Want To Public License, Version 2,
7     as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.
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   <parent>
17     <groupId>com.github.sebhoss</groupId>
18     <artifactId>java-parent</artifactId>
19     <version>2.0.1</version>
20   </parent>
22   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
23   <!--                               INFORMATIONS                              -->
24   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
25   <artifactId>storage-units</artifactId>
26   <version>1.0.3-SNAPSHOT</version>
27   <inceptionYear>2012</inceptionYear>
28   <url>https://github.com/sebhoss/storage-units</url>
29   <name>Storage Units</name>
30   <description>Implementation of storage units according to ISO IEC 80000-13:2008.</description>
32   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33   <!--                                  SOURCE                                 -->
34   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35   <scm>
36     <connection>scm:git:git://github.com/sebhoss/storage-units.git</connection>
37     <developerConnection>scm:git:git@github.com:sebhoss/storage-units.git</developerConnection>
38     <tag>master</tag>
39     <url>${project.url}</url>
40   </scm>
42   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
43   <!--                                PROPERTIES                               -->
44   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
45   <properties>
46     <version.bom>3.0.4</version.bom>
48     <coverage>0.25</coverage>
49   </properties>
51   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
52   <!--                               DEPENDENCIES                              -->
53   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
54   <dependencyManagement>
55     <dependencies>
56       <dependency>
57         <groupId>com.github.sebhoss.bom</groupId>
58         <artifactId>java-bom</artifactId>
59         <version>${version.bom}</version>
60         <type>pom</type>
61         <scope>import</scope>
62       </dependency>
63       <dependency>
64         <groupId>com.github.sebhoss.bom</groupId>
65         <artifactId>sebhoss-bom</artifactId>
66         <version>${version.bom}</version>
67         <type>pom</type>
68         <scope>import</scope>
69       </dependency>
70       <dependency>
71         <groupId>com.github.sebhoss.bom</groupId>
72         <artifactId>testing-bom</artifactId>
73         <version>${version.bom}</version>
74         <type>pom</type>
75         <scope>import</scope>
76       </dependency>
77     </dependencies>
78   </dependencyManagement>
79   <dependencies>
80     <dependency>
81       <groupId>com.github.sebhoss</groupId>
82       <artifactId>null-analysis</artifactId>
83     </dependency>
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     <dependency>
94       <groupId>nl.jqno.equalsverifier</groupId>
95       <artifactId>equalsverifier</artifactId>
96       <scope>test</scope>
97     </dependency>
98   </dependencies>
100   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
101   <!--                                   BUILD                                 -->
102   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
103   <build>
104     <plugins>
105       <plugin>
106         <groupId>org.apache.maven.plugins</groupId>
107         <artifactId>maven-dependency-plugin</artifactId>
108         <configuration>
109           <!--
110             Ignore common annotations because @SuppressWarnings is not retained
111             in byte code. Therefore the plugin detects a false positive.
112            -->
113           <usedDependencies>
114             <usedDependency>com.github.sebhoss:suppress-warnings</usedDependency>
115           </usedDependencies>
116         </configuration>
117       </plugin>
118     </plugins>
119   </build>
120 </project>