fix #11
[storage-units.git] / pom.xml
blob3d18632acbe8ad876deef45fb4f47e820dcfdb3b
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.storage_units</groupId>
28   <artifactId>storage-units.java</artifactId>
29   <version>4.0.0-${revision}</version>
30   <packaging>pom</packaging>
32   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33   <!--                               INFORMATIONS                              -->
34   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36   <name>Storage Units :: Parent</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   <!--                                 MODULES                                 -->
43   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
44   <!-- https://maven.apache.org/pom.html#Aggregation -->
45   <modules>
46    <module>storage-units</module>
47    <module>storage-units-jackson</module>
48    <module>storage-units-mongodb</module>
49   </modules>
51   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
52   <!--                                    SCM                                  -->
53   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
54   <!-- https://maven.apache.org/pom.html#SCM -->
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   <!--                             ISSUE MANAGEMENT                            -->
64   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
65   <!-- https://maven.apache.org/pom.html#Issue_Management -->
66   <issueManagement>
67     <system>GitHub</system>
68     <url>https://github.com/sebhoss/storage-units/issues</url>
69   </issueManagement>
71   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
72   <!--                               CI MANAGEMENT                             -->
73   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
74   <!-- https://maven.apache.org/pom.html#Continuous_Integration_Management -->
75   <ciManagement>
76     <system>Travis</system>
77     <url>https://travis-ci.org/sebhoss/storage-units</url>
78   </ciManagement>
80   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
81   <!--                          DISTRIBUTION MANAGEMENT                        -->
82   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
83   <!-- https://maven.apache.org/pom.html#Distribution_Management -->
84   <distributionManagement>
85     <site>
86       <id>github</id>
87       <name>GitHub Pages</name>
88       <url>https://seb.xn--ho-hia.de/storage-units</url>
89     </site>
90   </distributionManagement>
92   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
93   <!--                                PROPERTIES                               -->
94   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
95   <!-- https://maven.apache.org/pom.html#Properties -->
96   <properties>
97     <revision>SNAPSHOT</revision>
98   </properties>
100   <build>
101     <plugins>
102       <plugin>
103         <groupId>org.codehaus.mojo</groupId>
104         <artifactId>flatten-maven-plugin</artifactId>
105         <version>1.0.0</version>
106         <configuration>
107           <flattenMode>oss</flattenMode>
108         </configuration>
109         <executions>
110           <!-- enable flattening -->
111           <execution>
112             <id>flatten</id>
113             <phase>process-resources</phase>
114             <goals>
115               <goal>flatten</goal>
116             </goals>
117           </execution>
118           <!-- ensure proper cleanup -->
119           <execution>
120             <id>flatten.clean</id>
121             <phase>clean</phase>
122             <goals>
123               <goal>clean</goal>
124             </goals>
125           </execution>
126         </executions>
127       </plugin>
128     </plugins>
129   </build>
131 </project>