fix #25 add SimpleXML converter
[storage-units.git] / storage-units-orika / pom.xml
bloba09a2d4e1be156dce5ebc5ad7adcd6174bb3aa2a
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.storage-units</groupId>
16         <artifactId>storage-units.java</artifactId>
17         <version>9999.99.99-SNAPSHOT</version>
18     </parent>
20     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
21     <!--                               COORDINATES                               -->
22     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
23     <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
24     <artifactId>storage-units-orika</artifactId>
26     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27     <!--                               INFORMATIONS                              -->
28     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
29     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
30     <name>Storage Units :: Orika</name>
32     <dependencies>
33         <dependency>
34             <groupId>wtf.metio.storage-units</groupId>
35             <artifactId>storage-units-model</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>org.jspecify</groupId>
40             <artifactId>jspecify</artifactId>
41             <version>0.3.0-alpha-1</version>
42         </dependency>
43         <dependency>
44             <groupId>ma.glasnost.orika</groupId>
45             <artifactId>orika-core</artifactId>
46             <version>1.5.4</version>
47         </dependency>
48     </dependencies>
49 </project>