Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependabot/maven/springboot.version 3.4.0 #2716

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
6 changes: 5 additions & 1 deletion example-wikipedia-with-springboot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2023.0.3</version>
<version>2024.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -51,6 +51,10 @@
<groupId>io.github.openfeign</groupId>
<artifactId>feign-core</artifactId>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-form</artifactId>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-gson</artifactId>
Expand Down
17 changes: 2 additions & 15 deletions form-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<artifactId>feign-form-spring</artifactId>

<name>Open Feign Forms Extension for Spring</name>
<name>Feign Forms Extension for Spring</name>

<properties>
<main.java.version>17</main.java.version>
Expand Down Expand Up @@ -77,7 +77,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
<version>4.1.4</version>
<version>4.2.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand All @@ -104,19 +104,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-core</artifactId>
<version>2.3.18.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.appulse</groupId>
<artifactId>utils-java</artifactId>
<version>1.18.0</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion form/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<artifactId>feign-form</artifactId>

<name>Open Feign Forms Core</name>
<name>Feign Forms Core</name>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
<moshi.version>1.15.2</moshi.version>
<slf4j.version>2.0.16</slf4j.version>
<json.version>20241224</json.version>
<springboot.version>3.3.5</springboot.version>
<springboot.version>3.4.1</springboot.version>

<junit5.version>5.11.4</junit5.version>
<jackson.version>2.18.2</jackson.version>
Expand Down
Loading