add more serialization support for various libraries
[storage-units.git] / pom.xml
blob4736bd8cf6512876a6bad268587a26f59eed70dc
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
5   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
6   <!--                                  PARENT                                 -->
7   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
8   <!-- https://maven.apache.org/pom.html#Inheritance -->
9   <parent>
10     <groupId>wtf.metio.maven.parents</groupId>
11     <artifactId>maven-parents-java-stable</artifactId>
12     <version>2022.9.30</version>
13   </parent>
15   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
16   <!--                               COORDINATES                               -->
17   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18   <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
19   <groupId>wtf.metio.storage-units</groupId>
20   <artifactId>storage-units.java</artifactId>
21   <version>${revision}</version>
22   <packaging>pom</packaging>
24   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
25   <!--                               INFORMATIONS                              -->
26   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
28   <name>Storage Units</name>
29   <description>Implementation of storage units according to ISO IEC 80000-13:2008.</description>
30   <url>https://storage-units.projects.metio.wtf/</url>
31   <inceptionYear>2012</inceptionYear>
33   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34   <!--                                 MODULES                                 -->
35   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
36   <!-- https://maven.apache.org/pom.html#Aggregation -->
37   <modules>
38    <module>storage-units-model</module>
39 <!--   <module>storage-units-eclipselink</module>-->
40 <!--   <module>storage-units-jackson</module>-->
41 <!--   <module>storage-units-mongodb</module>-->
42   </modules>
44   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
45   <!--                                    SCM                                  -->
46   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
47   <!-- https://maven.apache.org/pom.html#SCM -->
48   <scm>
49     <connection>scm:git:git://github.com/metio/storage-units.java.git</connection>
50     <developerConnection>scm:git:git@github.com:metio/storage-units.java.git</developerConnection>
51     <tag>main</tag>
52     <url>${project.url}</url>
53   </scm>
55   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
56   <!--                             ISSUE MANAGEMENT                            -->
57   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
58   <!-- https://maven.apache.org/pom.html#Issue_Management -->
59   <issueManagement>
60     <system>GitHub</system>
61     <url>https://github.com/metio/storage-units.java/issues</url>
62   </issueManagement>
64   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
65   <!--                                PROPERTIES                               -->
66   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
67   <!-- https://maven.apache.org/pom.html#Properties -->
68   <properties>
69     <revision>9999-99-99-SNAPSHOT</revision>
70     <version.jdk>17</version.jdk>
71   </properties>
73 </project>