Skip to content

Commit

Permalink
prepare 4.5.0 release (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nephery authored Aug 27, 2024
1 parent 3ebe71d commit ff6a6a2
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 38 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>com.solace.spring.cloud</groupId>
<artifactId>solace-spring-cloud-build</artifactId>
<version>4.4.1-SNAPSHOT</version>
<version>4.5.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Solace Spring Cloud Build</name>
Expand All @@ -32,7 +32,7 @@
<!-- Remove this if the next version of solace-spring-boot works fine -->
<spring.boot.version>3.3.3</spring.boot.version>

<solace.spring.cloud.stream-starter.version>5.4.1-SNAPSHOT</solace.spring.cloud.stream-starter.version>
<solace.spring.cloud.stream-starter.version>5.5.0-SNAPSHOT</solace.spring.cloud.stream-starter.version>

<solace.integration.test.support.version>1.1.2</solace.integration.test.support.version>
<solace.integration.test.support.fetch_checkout.skip>false</solace.integration.test.support.fetch_checkout.skip>
Expand Down
30 changes: 4 additions & 26 deletions solace-spring-cloud-bom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Consult the table below to determine which version of the BOM you need to use:
| 2022.0.4 | 3.1.0, 3.2.0 | 3.1.x |
| 2023.0.1 | 4.0.0, 4.1.0 | 3.2.x |
| 2023.0.2 | 4.2.0 | 3.3.x |
| 2023.0.3 | 4.3.0, 4.4.0 | 3.3.x |
| 2023.0.3 | 4.3.0, 4.4.0, 4.5.0 | 3.3.x |

## Including the BOM

Expand All @@ -41,7 +41,7 @@ In addition to showing how to include the BOM, the following snippets also shows
<dependency>
<groupId>com.solace.spring.cloud</groupId>
<artifactId>solace-spring-cloud-bom</artifactId>
<version>4.4.0</version>
<version>4.5.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -56,32 +56,10 @@ In addition to showing how to include the BOM, the following snippets also shows
</dependencies>
```

### Using it with Gradle 4
```groovy
buildscript {
dependencies {
classpath 'io.spring.gradle:dependency-management-plugin:1.0.8.RELEASE'
}
}
/* Gradle 4 isn't natively compatible with Maven BOMs. Need to use the Spring's dependency management plugin. */
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom "com.solace.spring.cloud:solace-spring-cloud-bom:4.4.0"
}
}
dependencies {
compile("com.solace.spring.cloud:spring-cloud-starter-stream-solace")
}
```

### Using it with Gradle 5
### Using it with Gradle
```groovy
dependencies {
implementation(platform("com.solace.spring.cloud:solace-spring-cloud-bom:4.4.0"))
implementation(platform("com.solace.spring.cloud:solace-spring-cloud-bom:4.5.0"))
implementation("com.solace.spring.cloud:spring-cloud-starter-stream-solace")
}
```
4 changes: 2 additions & 2 deletions solace-spring-cloud-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<groupId>com.solace.spring.cloud</groupId>
<artifactId>solace-spring-cloud-build</artifactId>
<version>4.4.1-SNAPSHOT</version>
<version>4.5.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>solace-spring-cloud-bom</artifactId>
<packaging>pom</packaging>
<version>4.4.1-SNAPSHOT</version>
<version>4.5.0-SNAPSHOT</version>

<name>Solace Spring Cloud BOM</name>
<description>BOM for Solace Spring Cloud</description>
Expand Down
2 changes: 1 addition & 1 deletion solace-spring-cloud-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.solace.spring.cloud</groupId>
<artifactId>solace-spring-cloud-build</artifactId>
<version>4.4.1-SNAPSHOT</version>
<version>4.5.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
= Spring Cloud Stream Binder for Solace PubSub+
:revnumber: 5.4.0
:revnumber: 5.5.0
:toc: preamble
:toclevels: 3
:icons: font
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<groupId>com.solace.spring.cloud</groupId>
<artifactId>solace-spring-cloud-parent</artifactId>
<version>4.4.1-SNAPSHOT</version>
<version>4.5.0-SNAPSHOT</version>
<relativePath>../../solace-spring-cloud-parent/pom.xml</relativePath>
</parent>

<artifactId>spring-cloud-starter-stream-solace</artifactId>
<version>5.4.1-SNAPSHOT</version>
<version>5.5.0-SNAPSHOT</version>
<packaging>jar</packaging>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<groupId>com.solace.spring.cloud</groupId>
<artifactId>solace-spring-cloud-parent</artifactId>
<version>4.4.1-SNAPSHOT</version>
<version>4.5.0-SNAPSHOT</version>
<relativePath>../../solace-spring-cloud-parent/pom.xml</relativePath>
</parent>

<artifactId>spring-cloud-stream-binder-solace-core</artifactId>
<version>5.4.1-SNAPSHOT</version>
<version>5.5.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Solace Spring Cloud Stream Binder Core</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<groupId>com.solace.spring.cloud</groupId>
<artifactId>solace-spring-cloud-parent</artifactId>
<version>4.4.1-SNAPSHOT</version>
<version>4.5.0-SNAPSHOT</version>
<relativePath>../../solace-spring-cloud-parent/pom.xml</relativePath>
</parent>

<artifactId>spring-cloud-stream-binder-solace</artifactId>
<version>5.4.1-SNAPSHOT</version>
<version>5.5.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Solace Spring Cloud Stream Binder</name>
Expand Down

0 comments on commit ff6a6a2

Please sign in to comment.