Skip to content

Commit

Permalink
Upgrade versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sivaprasadreddy committed Mar 5, 2025
1 parent 09e08f1 commit 4f42672
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id "java"
id "org.springframework.boot" version "3.4.2"
id "org.springframework.boot" version "3.5.0-M2"
id "io.spring.dependency-management" version "1.1.7"
id "com.diffplug.spotless" version "7.0.2"
id "org.openrewrite.rewrite" version "7.1.2"
id "org.openrewrite.rewrite" version "7.1.7"
}

group = "com.sivalabs"
Expand All @@ -27,7 +27,7 @@ repositories {
}

ext {
set("springModulithVersion", "1.3.2")
set("springModulithVersion", "1.4.0-M2")
set("datasourceMicrometerSpringBootVersion", "1.0.6")
}

Expand Down
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- '5672:5672'
- '15672:15672'
zipkin:
image: 'openzipkin/zipkin:3.4.4'
image: 'openzipkin/zipkin:3.5.0'
environment:
- STORAGE_TYPE=mem
ports:
Expand Down
2 changes: 1 addition & 1 deletion k8s/zipkin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
spec:
containers:
- name: zipkin
image: "openzipkin/zipkin:3.4.4"
image: "openzipkin/zipkin:3.5.0"
ports:
- name: zipkin
containerPort: 9411
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.2</version>
<version>3.5.0-M2</version>
<relativePath/>
</parent>
<groupId>com.sivalabs</groupId>
Expand All @@ -19,11 +19,11 @@
<properties>
<java.version>21</java.version>
<dockerImageName>sivaprasadreddy/${project.artifactId}</dockerImageName>
<spring-modulith.version>1.3.2</spring-modulith.version>
<spring-modulith.version>1.4.0-M2</spring-modulith.version>
<htmx-spring-boot-thymeleaf.version>4.0.1</htmx-spring-boot-thymeleaf.version>
<datasource-micrometer-spring-boot.version>1.0.6</datasource-micrometer-spring-boot.version>
<spotless.version>2.44.2</spotless.version>
<rewrite-maven-plugin.version>6.1.2</rewrite-maven-plugin.version>
<spotless.version>2.44.3</spotless.version>
<rewrite-maven-plugin.version>6.2.3</rewrite-maven-plugin.version>
</properties>

<dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class TestcontainersConfiguration {

@Container
static GenericContainer<?> zipkin =
new GenericContainer<>(DockerImageName.parse("openzipkin/zipkin:3.4.4")).withExposedPorts(9411);
new GenericContainer<>(DockerImageName.parse("openzipkin/zipkin:3.5.0")).withExposedPorts(9411);

@Bean
@ServiceConnection
Expand Down

0 comments on commit 4f42672

Please sign in to comment.