refactor: Streamlined the API of the services
[demos/kafka/chat] / pom.xml
diff --git a/pom.xml b/pom.xml
index 22d1810..fc9e763 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -9,12 +9,13 @@
     <relativePath/> <!-- lookup parent from repository -->
   </parent>
   <groupId>de.juplo.kafka</groupId>
-  <artifactId>chatroom</artifactId>
+  <artifactId>chat-backend</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <name>Chatroom Service</name>
-  <description>Simplified Chatroom-Service, that needs state on the server</description>
+  <description>Simplified Chat-Service, that needs state on the server</description>
   <properties>
     <java.version>17</java.version>
+    <assertj-reactor.version>1.0.8</assertj-reactor.version>
   </properties>
   <dependencies>
     <dependency>
       <artifactId>spring-boot-starter-test</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>pl.rzrz</groupId>
+      <artifactId>assertj-reactor</artifactId>
+      <version>${assertj-reactor.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>