convert to java 17 repo
[storage-units.git] / storage-units-jackson / pom.xml
blob1923c8ad2c61213b0b0613c926f0ac5ace5a6dda
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
4     This file is part of storage-units. It is subject to the license terms in the LICENSE file found in the top-level
5     directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of storage-units,
6     including this file, may be copied, modified, propagated, or distributed except according to the terms contained
7     in the LICENSE file.
9 -->
10 <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">
11   <modelVersion>4.0.0</modelVersion>
13   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
14   <!--                                  PARENT                                 -->
15   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
16   <!-- https://maven.apache.org/pom.html#Inheritance -->
17   <parent>
18     <groupId>wtf.metio.storage-units</groupId>
19     <artifactId>storage-units.java</artifactId>
20     <version>${revision}</version>
21   </parent>
23   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
24   <!--                               COORDINATES                               -->
25   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
26   <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
27   <artifactId>storage-units-jackson</artifactId>
29   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
30   <!--                               INFORMATIONS                              -->
31   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
32   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
33   <name>Storage Units :: Serialization :: Jackson</name>
35   <dependencies>
36     <dependency>
37       <groupId>wtf.metio.storage-units</groupId>
38       <artifactId>storage-units-model</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>com.fasterxml.jackson.core</groupId>
43       <artifactId>jackson-core</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>com.fasterxml.jackson.core</groupId>
47       <artifactId>jackson-databind</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>com.fasterxml.jackson.core</groupId>
51       <artifactId>jackson-annotations</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.jspecify</groupId>
55       <artifactId>jspecify</artifactId>
56       <version>0.3.0-alpha-1</version>
57     </dependency>
58   </dependencies>
59 </project>