Skip to content

Commit a871505

Browse files
author
Sebastian Hoß
committed
reformat & fix javadocs
1 parent e17545f commit a871505

27 files changed

+510
-770
lines changed

memoization-caffeine/pom.xml

Lines changed: 46 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -3,55 +3,56 @@
33
~ SPDX-FileCopyrightText: The memoization.java Authors
44
~ SPDX-License-Identifier: 0BSD
55
-->
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>
89

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 -->
1011

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>
2021

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>
2627

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>
3233

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>
5657

5758
</project>

memoization-caffeine/src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* SPDX-FileCopyrightText: The memoization.java Authors
33
* SPDX-License-Identifier: 0BSD
44
*/
5+
/**
6+
* The caffeine module contains the Caffeine based implementation of memoization.java
7+
*/
58
module wtf.metio.memoization.caffeine {
69

710
requires com.github.benmanes.caffeine;

0 commit comments

Comments
 (0)