Skip to content

Commit b5e558d

Browse files
committed
caching
1 parent ff74f27 commit b5e558d

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

caching/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>caching</artifactId>
3636
<dependencies>
37+
<dependency>
38+
<groupId>org.slf4j</groupId>
39+
<artifactId>slf4j-api</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>ch.qos.logback</groupId>
43+
<artifactId>logback-classic</artifactId>
44+
</dependency>
3745
<dependency>
3846
<groupId>org.junit.jupiter</groupId>
3947
<artifactId>junit-jupiter-engine</artifactId>

pom.xml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454
<slf4j.version>2.0.17</slf4j.version>
5555
<logback.version>1.5.18</logback.version>
5656
<mockito.version>5.16.1</mockito.version>
57+
<mongo.version>5.4.0</mongo.version>
58+
<bson.version>5.4.0</bson.version>
5759
<!-- SonarCloud -->
5860
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
5961
<sonar.organization>iluwatar</sonar.organization>
@@ -73,11 +75,11 @@
7375
<!-- <module>async-method-invocation</module>-->
7476
<!-- <module>balking</module>-->
7577
<!-- <module>bloc</module>-->
76-
<module>bridge</module>
77-
<module>builder</module>
78-
<module>business-delegate</module>
79-
<module>bytecode</module>
80-
<!-- <module>caching</module>-->
78+
<!-- <module>bridge</module>-->
79+
<!-- <module>builder</module>-->
80+
<!-- <module>business-delegate</module>-->
81+
<!-- <module>bytecode</module>-->
82+
<module>caching</module>
8183
<!-- <module>callback</module>-->
8284
<!-- <module>chain-of-responsibility</module>-->
8385
<!-- <module>circuit-breaker</module>-->
@@ -304,6 +306,16 @@
304306
<artifactId>mockito-core</artifactId>
305307
<version>${mockito.version}</version>
306308
</dependency>
309+
<dependency>
310+
<groupId>org.mongodb</groupId>
311+
<artifactId>bson</artifactId>
312+
<version>${bson.version}</version>
313+
</dependency>
314+
<dependency>
315+
<groupId>org.mongodb</groupId>
316+
<artifactId>mongodb-driver-legacy</artifactId>
317+
<version>${mongo.version}</version>
318+
</dependency>
307319
<!-- <dependency>-->
308320
<!-- <groupId>ch.qos.logback</groupId>-->
309321
<!-- <artifactId>logback-core</artifactId>-->

0 commit comments

Comments
 (0)