forked from metio/storage-units.java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
executable file
·132 lines (119 loc) · 5.66 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of storage-units. It is subject to the license terms in the LICENSE file found in the top-level
directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of storage-units,
including this file, may be copied, modified, propagated, or distributed except according to the terms contained
in the LICENSE file.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- PARENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Inheritance -->
<parent>
<groupId>de.xn--ho-hia.maven.parents</groupId>
<artifactId>maven-parents-java-stable</artifactId>
<version>2016.08.20-000508</version>
</parent>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- COORDINATES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
<groupId>de.xn--ho-hia.storage_units</groupId>
<artifactId>storage-units.java</artifactId>
<version>4.0.0-${revision}</version>
<packaging>pom</packaging>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- INFORMATIONS -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#More_Project_Information -->
<name>Storage Units</name>
<description>Implementation of storage units according to ISO IEC 80000-13:2008.</description>
<url>https://seb.xn--ho-hia.de/storage-units</url>
<inceptionYear>2012</inceptionYear>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- MODULES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Aggregation -->
<modules>
<module>storage-units</module>
<module>storage-units-eclipselink</module>
<module>storage-units-jackson</module>
<module>storage-units-mongodb</module>
</modules>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- SCM -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#SCM -->
<scm>
<connection>scm:git:git://github.com/sebhoss/storage-units.git</connection>
<developerConnection>scm:git:git@github.com:sebhoss/storage-units.git</developerConnection>
<tag>master</tag>
<url>${project.url}</url>
</scm>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- ISSUE MANAGEMENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Issue_Management -->
<issueManagement>
<system>GitHub</system>
<url>https://github.com/sebhoss/storage-units/issues</url>
</issueManagement>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- CI MANAGEMENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Continuous_Integration_Management -->
<ciManagement>
<system>Travis</system>
<url>https://travis-ci.org/sebhoss/storage-units</url>
</ciManagement>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- DISTRIBUTION MANAGEMENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Distribution_Management -->
<distributionManagement>
<site>
<id>github</id>
<name>GitHub Pages</name>
<url>https://seb.xn--ho-hia.de/storage-units</url>
</site>
</distributionManagement>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- PROPERTIES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Properties -->
<properties>
<revision>SNAPSHOT</revision>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.0.0</version>
<configuration>
<flattenMode>oss</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<!-- ensure proper cleanup -->
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>