Skip to content

Commit

Permalink
Upgrade to Spring Boot 3.2.0 (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
loicgreffier authored Dec 6, 2023
1 parent 00825f4 commit 214b8a6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 18 deletions.
30 changes: 18 additions & 12 deletions kstreamplify-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,50 +11,56 @@

<artifactId>kstreamplify-spring-boot</artifactId>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring-boot.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
<version>${spring-boot.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-testcontainers</artifactId>
<version>${spring-boot.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.michelin</groupId>
<artifactId>kstreamplify-core</artifactId>
<version>1.0.2-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
<version>${slf4j.version}</version>
</dependency>

<dependency>
<groupId>com.michelin</groupId>
<artifactId>kstreamplify-core</artifactId>
<version>1.0.2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import com.michelin.kstreamplify.context.KafkaStreamsExecutionContext;
import com.michelin.kstreamplify.initializer.KafkaStreamsInitializer;
import com.michelin.kstreamplify.initializer.KafkaStreamsStarter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
Expand Down Expand Up @@ -62,7 +61,7 @@ static void setUp() {
}

@Test
void shouldInitAndRun() throws InterruptedException, IOException {
void shouldInitAndRun() throws InterruptedException {
waitingForKafkaStreamsToRun();

assertEquals(KafkaStreams.State.RUNNING, initializer.getKafkaStreams().state());
Expand Down
6 changes: 2 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<developer>
<id>loicgreffier</id>
<name>Loïc Greffier</name>
<email>dif-hap-dev@michelin.com</email>
<email>loic.greffier@michelin.com</email>
<url>https://github.com/loicgreffier</url>
<organization>Michelin</organization>
<roles>
Expand Down Expand Up @@ -120,14 +120,12 @@
<junit-jupiter.version>5.10.1</junit-jupiter.version>
<kafka.version>3.4.0</kafka.version>
<kafka-streams-avro-serde.version>7.5.2</kafka-streams-avro-serde.version>
<logback.version>1.4.11</logback.version>
<lombok.version>1.18.30</lombok.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<mockito.version>5.8.0</mockito.version>
<jacoco.version>0.8.11</jacoco.version>
<slf4j.version>2.0.9</slf4j.version>
<spring-boot.version>3.1.5</spring-boot.version>
<spring-boot.version>3.2.0</spring-boot.version>
<testcontainers.version>1.19.3</testcontainers.version>
<sonar.organization>michelin</sonar.organization>
<sonar.projectKey>michelin_kstreamplify</sonar.projectKey>
Expand Down

0 comments on commit 214b8a6

Please sign in to comment.