reformat usage
[memoization.java.git] / memoization-caffeine / pom.xml
bloba1870c4cc2dcc3d14f8909093a8ed1c0a0878e06
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
4     This file is part of memoization.java. It is subject to the license terms in the LICENSE file found in the top-level
5     directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of memoization.java,
6     including this file, may be copied, modified, propagated, or distributed except according to the terms contained
7     in the LICENSE file.
9 -->
10 <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">
11   <modelVersion>4.0.0</modelVersion>
13   <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention -->
15   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
16   <!--                                 PARENT                                  -->
17   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18   <!-- https://maven.apache.org/pom.html#Inheritance -->
19   <parent>
20     <groupId>de.xn--ho-hia.memoization</groupId>
21     <artifactId>memoization.java</artifactId>
22     <version>2.0.0-${revision}</version>
23   </parent>
25   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
26   <!--                               COORDINATES                               -->
27   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28   <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29   <artifactId>memoization-caffeine</artifactId>
31   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
32   <!--                               INFORMATIONS                              -->
33   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
35   <name>memoization.java :: Caffeine</name>
37   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
38   <!--                                DEPENDENCIES                             -->
39   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40   <!-- https://maven.apache.org/pom.html#Dependencies -->
41   <dependencies>
42     <dependency>
43       <groupId>de.xn--ho-hia.memoization</groupId>
44       <artifactId>memoization-core</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>de.xn--ho-hia.quality</groupId>
48       <artifactId>suppress-warnings</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>com.github.ben-manes.caffeine</groupId>
52       <artifactId>caffeine</artifactId>
53       <version>2.3.1</version>
54     </dependency>
55     <dependency>
56       <groupId>junit</groupId>
57       <artifactId>junit</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.mockito</groupId>
62       <artifactId>mockito-core</artifactId>
63       <scope>test</scope>
64     </dependency>
65   </dependencies>
67 </project>