Update parent to latest version
[memoization.java.git] / memoization-core / pom.xml
blob3d71542d3ea382160f0c3951ee9a65ae34962908
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ SPDX-FileCopyrightText: The memoization.java 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/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
10     <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention -->
12     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
13     <!--                                 PARENT                                  -->
14     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
15     <!-- https://maven.apache.org/pom.html#Inheritance -->
16     <parent>
17         <groupId>wtf.metio.memoization</groupId>
18         <artifactId>memoization.java</artifactId>
19         <version>9999.99.99-SNAPSHOT</version>
20     </parent>
22     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
23     <!--                               COORDINATES                               -->
24     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
25     <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
26     <artifactId>memoization-core</artifactId>
28     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
29     <!--                               INFORMATIONS                              -->
30     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
31     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
32     <name>memoization.java :: Core</name>
34     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35     <!--                                DEPENDENCIES                             -->
36     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
37     <!-- https://maven.apache.org/pom.html#Dependencies -->
38     <dependencies>
39         <dependency>
40             <groupId>com.github.spotbugs</groupId>
41             <artifactId>spotbugs-annotations</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.jspecify</groupId>
45             <artifactId>jspecify</artifactId>
46         </dependency>
47     </dependencies>
49 </project>