update workflows (#58)
[storage-units.git] / storage-units-model / pom.xml
blob6fc1c37d65d47daff1e73b9bac40562f9b9bc46b
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-model</artifactId>
25     <packaging>jar</packaging>
27     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28     <!--                               INFORMATIONS                              -->
29     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
30     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
31     <name>Storage Units :: Model</name>
33     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34     <!--                               DEPENDENCIES                              -->
35     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
36     <!-- https://maven.apache.org/pom.html#Dependencies -->
37     <dependencies>
38         <dependency>
39             <groupId>org.jetbrains</groupId>
40             <artifactId>annotations</artifactId>
41             <scope>provided</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.jspecify</groupId>
45             <artifactId>jspecify</artifactId>
46             <scope>provided</scope>
47         </dependency>
48         <dependency>
49             <groupId>com.google.errorprone</groupId>
50             <artifactId>error_prone_annotations</artifactId>
51             <scope>provided</scope>
52         </dependency>
53     </dependencies>
55 </project>