-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
executable file
·107 lines (98 loc) · 4.94 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ SPDX-FileCopyrightText: The Storage-Units Authors
~ SPDX-License-Identifier: 0BSD
-->
<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>wtf.metio.maven.parents</groupId>
<artifactId>maven-parents-java-prototype</artifactId>
<version>2023.12.1</version>
</parent>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- COORDINATES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
<groupId>wtf.metio.storage-units</groupId>
<artifactId>storage-units.java</artifactId>
<version>9999.99.99-SNAPSHOT</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://github.com/metio/storage-units.java</url>
<inceptionYear>2012</inceptionYear>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- MODULES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Aggregation -->
<modules>
<module>storage-units-dozer</module>
<module>storage-units-eclipselink</module>
<module>storage-units-gson</module>
<module>storage-units-jackson</module>
<module>storage-units-jakarta</module>
<module>storage-units-mapstruct</module>
<module>storage-units-model</module>
<module>storage-units-modelmapper</module>
<module>storage-units-mongodb</module>
<module>storage-units-orika</module>
<module>storage-units-simple</module>
</modules>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- SCM -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#SCM -->
<scm>
<connection>scm:git:git://github.com/metio/storage-units.java.git</connection>
<developerConnection>scm:git:[email protected]:metio/storage-units.java.git</developerConnection>
<tag>main</tag>
<url>${project.url}</url>
</scm>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- ISSUE MANAGEMENT -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Issue_Management -->
<issueManagement>
<system>GitHub</system>
<url>https://github.com/metio/storage-units.java/issues</url>
</issueManagement>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- PROPERTIES -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- https://maven.apache.org/pom.html#Properties -->
<properties>
<version.jdk>${javaVersion}</version.jdk>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<quiet>true</quiet>
<files>
<file>${project.basedir}/../java.properties</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>