-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
163 lines (154 loc) · 7.39 KB
/
pom.xml
File metadata and controls
163 lines (154 loc) · 7.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.feuyeux.cache</groupId>
<artifactId>hello-cache</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>hello-cache-on-heap</module>
<module>hello-cache-off-heap</module>
<module>hello-cache-disk</module>
<module>hello-cache-redis</module>
<module>hello-cache-app</module>
</modules>
<properties>
<!-- local on heap -->
<!-- https://mvnrepository.com/artifact/org.cache2k/cache2k-core -->
<cache2k.version>2.6.1.Final</cache2k.version>
<!-- https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine -->
<caffeine2.version>2.9.3</caffeine2.version>
<caffeine3.version>3.2.3</caffeine3.version>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<guava.version>33.6.0-jre</guava.version>
<!-- local off heap -->
<!-- https://mvnrepository.com/artifact/org.caffinitas.ohc/ohc-core -->
<ohc.version>0.7.4</ohc.version>
<!-- local disk -->
<!-- https://mvnrepository.com/artifact/org.lmdbjava/lmdbjava -->
<lmdb.version>0.9.0</lmdb.version>
<!-- https://mvnrepository.com/artifact/org.agrona/agrona -->
<agrona.version>2.4.0</agrona.version>
<!-- https://mvnrepository.com/artifact/net.openhft/chronicle-map -->
<chronicle-map.version>3.27ea2</chronicle-map.version>
<!-- https://mvnrepository.com/artifact/org.rocksdb/rocksdbjni -->
<rocksdb.version>10.10.1.1</rocksdb.version>
<!-- remote -->
<!-- https://mvnrepository.com/artifact/org.redisson/redisson -->
<redisson.version>4.3.1</redisson.version>
<!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
<jedis.version>7.4.1</jedis.version>
<!-- https://mvnrepository.com/artifact/io.lettuce/lettuce-core -->
<lettuce.version>7.5.1.RELEASE</lettuce.version>
<!-- serialize -->
<!-- https://mvnrepository.com/artifact/com.esotericsoftware/kryo -->
<kryo.version>5.6.2</kryo.version>
<!-- https://mvnrepository.com/artifact/com.esotericsoftware/kryo-shaded -->
<kryo-shaded.version>4.0.3</kryo-shaded.version>
<!-- https://mvnrepository.com/artifact/de.javakaffee/kryo-serializers -->
<kryo-serializers.version>0.45</kryo-serializers.version>
<!-- -->
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter -->
<junit.version>6.0.3</junit.version>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl -->
<log4j-slf4j.version>2.25.4</log4j-slf4j.version>
<lombok.version>1.18.44</lombok.version>
<!-- https://mvnrepository.com/artifact/org.openjdk.jmh/jmh-core -->
<jmh.version>1.37</jmh.version>
<!-- -->
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- plugins -->
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin -->
<maven-source-plugin.version>3.4.0</maven-source-plugin.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-surefire-plugin -->
<maven-surefire-plugin.version>3.5.5</maven-surefire-plugin.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
<maven-compiler-plugin.version>3.15.0</maven-compiler-plugin.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jar-plugin -->
<maven-jar-plugin.version>3.5.0</maven-jar-plugin.version>
<java.21.options>
--add-opens=java.base/java.io=ALL-UNNAMED
--add-opens=java.base/java.nio=ALL-UNNAMED
--add-opens=java.base/sun.nio.ch=ALL-UNNAMED
--add-opens=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED
--add-opens=java.base/jdk.internal.misc=ALL-UNNAMED
--add-opens=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED
--add-opens=java.base/java.util=ALL-UNNAMED
--add-opens=java.base/java.lang=ALL-UNNAMED
--add-opens=java.base/java.lang.reflect=ALL-UNNAMED
--add-opens=java.base/java.lang.invoke=ALL-UNNAMED
--add-opens=java.base/java.time=ALL-UNNAMED
--add-opens=java.base/java.time.format=ALL-UNNAMED
--add-opens=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
--add-opens=jdk.management/com.sun.management.internal=ALL-UNNAMED
--add-opens=java.management/com.sun.jmx.mbeanserver=ALL-UNNAMED
</java.21.options>
</properties>
<dependencies>
<!-- log4j2 via slf4j -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j-slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.44</version>
<optional>true</optional>
</dependency>
<!-- junit5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<encoding>UTF-8</encoding>
<release>21</release>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
<configuration>
<archive>
<manifestEntries>
<Multi-Release>true</Multi-Release>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>com.spotify.fmt</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.29</version>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>