Skip to content

Commit 2566619

Browse files
1.2.2 Release (#34)
* Bump spring.boot.version from 2.6.4 to 2.6.6 (#33) Bumps `spring.boot.version` from 2.6.4 to 2.6.6. Updates `spring-boot-maven-plugin` from 2.6.4 to 2.6.6 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v2.6.4...v2.6.6) Updates `spring-boot-dependencies` from 2.6.4 to 2.6.6 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v2.6.4...v2.6.6) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-dependencies dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * override spring-boot in solace-java-cfenv to 2.6.6 * prepare for 1.2.2 release Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 50743b7 commit 2566619

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<repoName>SolaceProducts</repoName>
1616

1717
<!-- This is the version of Spring Boot we have targeted for this build -->
18-
<spring.boot.version>2.6.4</spring.boot.version>
18+
<spring.boot.version>2.6.6</spring.boot.version>
1919
<pivotal.cfenv.version>2.4.0</pivotal.cfenv.version>
2020

2121
<solace.spring.boot.java-starter.version>4.2.2-SNAPSHOT</solace.spring.boot.java-starter.version>

solace-java-cfenv/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ If, however, you want ONLY the `solace-java-cfenv` artifact, you can declare the
2626
<dependency>
2727
<groupId>com.solace.cloud.cloudfoundry</groupId>
2828
<artifactId>solace-java-cfenv</artifactId>
29-
<version>1.2.1</version>
29+
<version>1.2.2</version>
3030
</dependency>
3131
```
3232

3333
### Getting Started - Gradle
3434
```groovy
3535
/* Solace Java CFEnv */
36-
compile("com.solace.cloud.cloudfoundry:solace-java-cfenv:1.2.1")
36+
compile("com.solace.cloud.cloudfoundry:solace-java-cfenv:1.2.2")
3737
```
3838

3939
## Usage

solace-java-cfenv/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@
5252
<version>${solace.services-info.version}</version>
5353
</dependency>
5454

55+
<dependency>
56+
<groupId>org.springframework.boot</groupId>
57+
<artifactId>spring-boot</artifactId>
58+
</dependency>
59+
5560
<dependency>
5661
<groupId>io.pivotal.cfenv</groupId>
5762
<artifactId>java-cfenv-boot</artifactId>

solace-spring-boot-bom/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In addition to showing how to include the BOM, the following snippets also shows
3131
<dependency>
3232
<groupId>com.solace.spring.boot</groupId>
3333
<artifactId>solace-spring-boot-bom</artifactId>
34-
<version>1.2.1</version>
34+
<version>1.2.2</version>
3535
<type>pom</type>
3636
<scope>import</scope>
3737
</dependency>
@@ -59,7 +59,7 @@ apply plugin: 'io.spring.dependency-management'
5959
6060
dependencyManagement {
6161
imports {
62-
mavenBom "com.solace.spring.boot:solace-spring-boot-bom:1.2.1"
62+
mavenBom "com.solace.spring.boot:solace-spring-boot-bom:1.2.2"
6363
}
6464
}
6565
@@ -71,7 +71,7 @@ dependencies {
7171
### Using it with Gradle 5
7272
```groovy
7373
dependencies {
74-
implementation(platform("com.solace.spring.boot:solace-spring-boot-bom:1.2.1"))
74+
implementation(platform("com.solace.spring.boot:solace-spring-boot-bom:1.2.2"))
7575
implementation("com.solace.spring.boot:solace-spring-boot-starter")
7676
}
7777
```

solace-spring-boot-samples/solace-java-sample-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<start-class>demo.DemoApplication</start-class>
2222
<java.version>1.8</java.version>
23-
<spring.boot.version>2.6.4</spring.boot.version>
23+
<spring.boot.version>2.6.6</spring.boot.version>
2424
<solace.spring.boot.version>1.2.2-SNAPSHOT</solace.spring.boot.version>
2525
</properties>
2626

solace-spring-boot-samples/solace-jms-sample-app-jndi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<start-class>jndidemo.JndiDemoApplication</start-class>
2222
<java.version>1.8</java.version>
23-
<spring.boot.version>2.6.4</spring.boot.version>
23+
<spring.boot.version>2.6.6</spring.boot.version>
2424
<solace.spring.boot.bom.version>1.2.2-SNAPSHOT</solace.spring.boot.bom.version>
2525
</properties>
2626

solace-spring-boot-samples/solace-jms-sample-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<start-class>jmsdemo.DemoApplication</start-class>
2222
<java.version>1.8</java.version>
23-
<spring.boot.version>2.6.4</spring.boot.version>
23+
<spring.boot.version>2.6.6</spring.boot.version>
2424
<solace.spring.boot.version>1.2.2-SNAPSHOT</solace.spring.boot.version>
2525
</properties>
2626

0 commit comments

Comments
 (0)