|
3 | 3 | ~ SPDX-FileCopyrightText: The memoization.java Authors
|
4 | 4 | ~ SPDX-License-Identifier: 0BSD
|
5 | 5 | -->
|
6 |
| -<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/xsd/maven-4.0.0.xsd"> |
7 |
| - <modelVersion>4.0.0</modelVersion> |
| 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> |
8 | 9 |
|
9 |
| - <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention --> |
| 10 | + <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention --> |
10 | 11 |
|
11 |
| - <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
12 |
| - <!-- PARENT --> |
13 |
| - <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
14 |
| - <!-- https://maven.apache.org/pom.html#Inheritance --> |
15 |
| - <parent> |
16 |
| - <groupId>wtf.metio.memoization</groupId> |
17 |
| - <artifactId>memoization.java</artifactId> |
18 |
| - <version>9999.99.99-SNAPSHOT</version> |
19 |
| - </parent> |
| 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> |
20 | 21 |
|
21 |
| - <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
22 |
| - <!-- COORDINATES --> |
23 |
| - <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
24 |
| - <!-- https://maven.apache.org/pom.html#Maven_Coordinates --> |
25 |
| - <artifactId>memoization-caffeine</artifactId> |
| 22 | + <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
| 23 | + <!-- COORDINATES --> |
| 24 | + <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
| 25 | + <!-- https://maven.apache.org/pom.html#Maven_Coordinates --> |
| 26 | + <artifactId>memoization-caffeine</artifactId> |
26 | 27 |
|
27 |
| - <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
28 |
| - <!-- INFORMATIONS --> |
29 |
| - <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
30 |
| - <!-- https://maven.apache.org/pom.html#More_Project_Information --> |
31 |
| - <name>memoization.java :: Caffeine</name> |
| 28 | + <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
| 29 | + <!-- INFORMATIONS --> |
| 30 | + <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
| 31 | + <!-- https://maven.apache.org/pom.html#More_Project_Information --> |
| 32 | + <name>memoization.java :: Caffeine</name> |
32 | 33 |
|
33 |
| - <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
34 |
| - <!-- DEPENDENCIES --> |
35 |
| - <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
36 |
| - <!-- https://maven.apache.org/pom.html#Dependencies --> |
37 |
| - <dependencies> |
38 |
| - <dependency> |
39 |
| - <groupId>wtf.metio.memoization</groupId> |
40 |
| - <artifactId>memoization-core</artifactId> |
41 |
| - </dependency> |
42 |
| - <dependency> |
43 |
| - <groupId>wtf.metio.memoization</groupId> |
44 |
| - <artifactId>memoization-map</artifactId> |
45 |
| - </dependency> |
46 |
| - <dependency> |
47 |
| - <groupId>com.github.ben-manes.caffeine</groupId> |
48 |
| - <artifactId>caffeine</artifactId> |
49 |
| - </dependency> |
50 |
| - <dependency> |
51 |
| - <groupId>org.mockito</groupId> |
52 |
| - <artifactId>mockito-core</artifactId> |
53 |
| - <scope>test</scope> |
54 |
| - </dependency> |
55 |
| - </dependencies> |
| 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-map</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>com.github.ben-manes.caffeine</groupId> |
| 49 | + <artifactId>caffeine</artifactId> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.mockito</groupId> |
| 53 | + <artifactId>mockito-core</artifactId> |
| 54 | + <scope>test</scope> |
| 55 | + </dependency> |
| 56 | + </dependencies> |
56 | 57 |
|
57 | 58 | </project>
|
0 commit comments