Skip to content

Commit dfb8fd0

Browse files
committed
callback - cqrs
1 parent b5e558d commit dfb8fd0

File tree

10 files changed

+94
-7
lines changed

10 files changed

+94
-7
lines changed

callback/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>callback</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>

chain-of-responsibility/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>chain-of-responsibility</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>

circuit-breaker/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>circuit-breaker</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>

client-session/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>client-session</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>

collecting-parameter/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@
3939
<artifactId>junit-jupiter-engine</artifactId>
4040
<scope>test</scope>
4141
</dependency>
42-
<dependency>
43-
<groupId>junit</groupId>
44-
<artifactId>junit</artifactId>
45-
<scope>test</scope>
46-
</dependency>
4742
</dependencies>
4843
<build>
4944
<plugins>

collection-pipeline/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>collection-pipeline</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>

combinator/pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,37 @@
3434
</parent>
3535
<artifactId>combinator</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>
4048
<scope>test</scope>
4149
</dependency>
4250
</dependencies>
51+
<build>
52+
<plugins>
53+
<plugin>
54+
<groupId>org.apache.maven.plugins</groupId>
55+
<artifactId>maven-assembly-plugin</artifactId>
56+
<executions>
57+
<execution>
58+
<configuration>
59+
<archive>
60+
<manifest>
61+
<mainClass>com.iluwatar.combinator.CombinatorApp</mainClass>
62+
</manifest>
63+
</archive>
64+
</configuration>
65+
</execution>
66+
</executions>
67+
</plugin>
68+
</plugins>
69+
</build>
4370
</project>

command-query-responsibility-segregation/pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>command-query-responsibility-segregation</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>
@@ -46,14 +54,17 @@
4654
<dependency>
4755
<groupId>org.hibernate</groupId>
4856
<artifactId>hibernate-core</artifactId>
57+
<version>5.6.15.Final</version>
4958
</dependency>
5059
<dependency>
5160
<groupId>org.glassfish.jaxb</groupId>
5261
<artifactId>jaxb-runtime</artifactId>
62+
<version>2.3.3</version>
5363
</dependency>
5464
<dependency>
5565
<groupId>javax.xml.bind</groupId>
5666
<artifactId>jaxb-api</artifactId>
67+
<version>2.3.1</version>
5768
</dependency>
5869
</dependencies>
5970
<build>

command/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</parent>
3535
<artifactId>command</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: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
<mockito.version>5.16.1</mockito.version>
5757
<mongo.version>5.4.0</mongo.version>
5858
<bson.version>5.4.0</bson.version>
59+
<h2.version>2.3.232</h2.version>
5960
<!-- SonarCloud -->
6061
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
6162
<sonar.organization>iluwatar</sonar.organization>
@@ -79,7 +80,7 @@
7980
<!-- <module>builder</module>-->
8081
<!-- <module>business-delegate</module>-->
8182
<!-- <module>bytecode</module>-->
82-
<module>caching</module>
83+
<!-- <module>caching</module>-->
8384
<!-- <module>callback</module>-->
8485
<!-- <module>chain-of-responsibility</module>-->
8586
<!-- <module>circuit-breaker</module>-->
@@ -88,7 +89,7 @@
8889
<!-- <module>collection-pipeline</module>-->
8990
<!-- <module>combinator</module>-->
9091
<!-- <module>command</module>-->
91-
<!-- <module>command-query-responsibility-segregation</module>-->
92+
<module>command-query-responsibility-segregation</module>
9293
<!-- <module>commander</module>-->
9394
<!-- <module>component</module>-->
9495
<!-- <module>composite</module>-->
@@ -316,6 +317,11 @@
316317
<artifactId>mongodb-driver-legacy</artifactId>
317318
<version>${mongo.version}</version>
318319
</dependency>
320+
<dependency>
321+
<groupId>com.h2database</groupId>
322+
<artifactId>h2</artifactId>
323+
<version>${h2.version}</version>
324+
</dependency>
319325
<!-- <dependency>-->
320326
<!-- <groupId>ch.qos.logback</groupId>-->
321327
<!-- <artifactId>logback-core</artifactId>-->

0 commit comments

Comments
 (0)