Update parent to latest version
[storage-units.git] / pom.xml
blob818d73e1fc59fc91e927703fed8102392c34652e
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ SPDX-FileCopyrightText: The Storage-Units Authors
4   ~ SPDX-License-Identifier: 0BSD
5   -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
8     <modelVersion>4.0.0</modelVersion>
10     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
11     <!--                                  PARENT                                 -->
12     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
13     <!-- https://maven.apache.org/pom.html#Inheritance -->
14     <parent>
15         <groupId>wtf.metio.maven.parents</groupId>
16         <artifactId>maven-parents-java-prototype</artifactId>
17         <version>2023.9.1</version>
18     </parent>
20     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
21     <!--                               COORDINATES                               -->
22     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
23     <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
24     <groupId>wtf.metio.storage-units</groupId>
25     <artifactId>storage-units.java</artifactId>
26     <version>9999.99.99-SNAPSHOT</version>
27     <packaging>pom</packaging>
29     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
30     <!--                               INFORMATIONS                              -->
31     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
32     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
33     <name>Storage Units</name>
34     <description>Implementation of storage units according to ISO IEC 80000-13:2008.</description>
35     <url>https://storage-units.projects.metio.wtf/</url>
36     <inceptionYear>2012</inceptionYear>
38     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
39     <!--                                 MODULES                                 -->
40     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41     <!-- https://maven.apache.org/pom.html#Aggregation -->
42     <modules>
43         <module>storage-units-dozer</module>
44         <module>storage-units-eclipselink</module>
45         <module>storage-units-gson</module>
46         <module>storage-units-jackson</module>
47         <module>storage-units-jakarta</module>
48         <module>storage-units-mapstruct</module>
49         <module>storage-units-model</module>
50         <module>storage-units-modelmapper</module>
51         <module>storage-units-mongodb</module>
52         <module>storage-units-orika</module>
53         <module>storage-units-simple</module>
54     </modules>
56     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
57     <!--                                    SCM                                  -->
58     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
59     <!-- https://maven.apache.org/pom.html#SCM -->
60     <scm>
61         <connection>scm:git:git://github.com/metio/storage-units.java.git</connection>
62         <developerConnection>scm:git:git@github.com:metio/storage-units.java.git</developerConnection>
63         <tag>main</tag>
64         <url>${project.url}</url>
65     </scm>
67     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
68     <!--                             ISSUE MANAGEMENT                            -->
69     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
70     <!-- https://maven.apache.org/pom.html#Issue_Management -->
71     <issueManagement>
72         <system>GitHub</system>
73         <url>https://github.com/metio/storage-units.java/issues</url>
74     </issueManagement>
76     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
77     <!--                                PROPERTIES                               -->
78     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
79     <!-- https://maven.apache.org/pom.html#Properties -->
80     <properties>
81         <version.jdk>${javaVersion}</version.jdk>
82     </properties>
84     <build>
85         <plugins>
86             <plugin>
87                 <groupId>org.codehaus.mojo</groupId>
88                 <artifactId>properties-maven-plugin</artifactId>
89                 <executions>
90                     <execution>
91                         <phase>initialize</phase>
92                         <goals>
93                             <goal>read-project-properties</goal>
94                         </goals>
95                         <configuration>
96                             <quiet>true</quiet>
97                             <files>
98                                 <file>${project.basedir}/../java.properties</file>
99                             </files>
100                         </configuration>
101                     </execution>
102                 </executions>
103             </plugin>
104         </plugins>
105     </build>
107 </project>