recorder: 1.2.0 - Renamed `ApplicationTest` into `ApplicationIT` -- ALIGN
authorKai Moritz <kai@juplo.de>
Sun, 2 Jun 2024 10:23:08 +0000 (12:23 +0200)
committerKai Moritz <kai@juplo.de>
Thu, 6 Jun 2024 18:40:56 +0000 (20:40 +0200)
pom.xml
src/test/java/de/juplo/kafka/wordcount/recorder/RecorderApplicationIT.java

diff --git a/pom.xml b/pom.xml
index 0377da1..b11275e 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,7 @@
        </parent>
        <groupId>de.juplo.kafka.wordcount</groupId>
        <artifactId>recorder</artifactId>
-       <version>1.1.2</version>
+       <version>1.2.0</version>
        <name>Wordcount-Recorder</name>
        <description>Recorder-service of the multi-user wordcount-example</description>
        <properties>
@@ -69,6 +69,9 @@
 
        <build>
                <plugins>
+                       <plugin>
+                               <artifactId>maven-failsafe-plugin</artifactId>
+                       </plugin>
                        <plugin>
                                <groupId>org.springframework.boot</groupId>
                                <artifactId>spring-boot-maven-plugin</artifactId>
index 3879d38..aaed33e 100644 (file)
@@ -24,7 +24,7 @@ import java.time.Duration;
 import java.util.List;
 import java.util.stream.Stream;
 
-import static de.juplo.kafka.wordcount.recorder.ApplicationTests.TOPIC_OUT;
+import static de.juplo.kafka.wordcount.recorder.RecorderApplicationIT.TOPIC_OUT;
 import static org.assertj.core.api.Assertions.assertThat;
 import static org.awaitility.Awaitility.await;
 import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.asyncDispatch;
@@ -47,7 +47,7 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
 @AutoConfigureMockMvc
 @EmbeddedKafka(topics = { TOPIC_OUT })
 @Slf4j
-class ApplicationTests
+class RecorderApplicationIT
 {
        static final String TOPIC_OUT = "out";