use ints as cache keys
[memoization.java.git] / memoization-jool / pom.xml
blobcd40502c2827f46a6b8875177ce8bae8aadb9f5c
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-jool</artifactId>
28     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
29     <!--                               INFORMATIONS                              -->
30     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
31     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
32     <name>memoization.java :: jOOL</name>
34     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35     <!--                                DEPENDENCIES                             -->
36     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
37     <!-- https://maven.apache.org/pom.html#Dependencies -->
38     <dependencies>
39         <dependency>
40             <groupId>wtf.metio.memoization</groupId>
41             <artifactId>memoization-core</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>wtf.metio.memoization</groupId>
45             <artifactId>memoization-tck</artifactId>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>org.jooq</groupId>
50             <artifactId>jool</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>com.github.spotbugs</groupId>
54             <artifactId>spotbugs-annotations</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.mockito</groupId>
58             <artifactId>mockito-core</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>net.jodah</groupId>
63             <artifactId>concurrentunit</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>com.github.ben-manes.caffeine</groupId>
68             <artifactId>caffeine</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>com.google.guava</groupId>
73             <artifactId>guava</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.cache2k</groupId>
78             <artifactId>cache2k-api</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.cache2k</groupId>
83             <artifactId>cache2k-core</artifactId>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>net.openhft</groupId>
88             <artifactId>chronicle-map</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.eclipse.collections</groupId>
93             <artifactId>eclipse-collections-api</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.eclipse.collections</groupId>
98             <artifactId>eclipse-collections</artifactId>
99             <scope>test</scope>
100         </dependency>
101     </dependencies>
103 </project>