Skip to content

Commit

Permalink
chore: update spring to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
helios57 committed Jun 19, 2024
1 parent a0944f4 commit a4f9a72
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
## Description
This Spring Boot Starter provides request-reply functionality for [Spring Cloud Stream Binders].

## Spring Cloud Version Compatibility

Consult the table below to determine which version you need to use:

| Spring Cloud | spring-cloud-stream-starter-request-reply | Spring Boot | sol-jcsmp |
|--------------|-------------------------------------------|-------------|-----------|
| 2023.0.2 | 5.1.3 | 3.3.0 | 10.23.0 |
| 2023.0.1 | 5.1.2 | 3.2.5 | 10.23.0 |

## Usage
### Dependencies
In order to be able to use the request/reply functionality, add the following section to your Maven pom:
Expand All @@ -10,6 +19,7 @@ In order to be able to use the request/reply functionality, add the following se
<dependency>
<groupId>community.solace.spring.cloud</groupId>
<artifactId>spring-cloud-stream-starter-request-reply</artifactId>
<version>5.1.3</version>
</dependency>
```

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.5</version>
<version>3.3.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<groupId>community.solace.spring.cloud</groupId>
<artifactId>spring-cloud-stream-starter-request-reply</artifactId>
<version>5.1.2</version>
<version>5.1.3</version>
<name>spring-cloud-stream-starter-request-reply</name>
<description>Spring Boot Starter project to provide request and reply functionality to Spring Cloud Stream
projects
</description>

<properties>
<java.version>17</java.version>
<spring.boot.version>3.2.5</spring.boot.version>
<spring-cloud.version>2023.0.1</spring-cloud.version>
<spring.boot.version>3.3.0</spring.boot.version>
<spring-cloud.version>2023.0.2</spring-cloud.version>
<solace.jcsmp.version>10.23.0</solace.jcsmp.version>
<commons-logging.version>1.2</commons-logging.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

@ConfigurationProperties("spring.cloud.stream.requestreply")
public class RequestReplyProperties {
private List<String> copyHeadersOnWrap = new ArrayList<>();
private final List<String> copyHeadersOnWrap = new ArrayList<>();
private List<BinderTopicMappings> bindingMapping = new ArrayList<>();
private Map<String, String> variableReplacements = new HashMap<>();

Expand Down

0 comments on commit a4f9a72

Please sign in to comment.