Skip to content

Commit

Permalink
Bump org.springframework.boot from 3.2.5 to 3.3.0 (#27)
Browse files Browse the repository at this point in the history
* Bump org.springframework.boot from 3.2.5 to 3.3.0

Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 3.2.5 to 3.3.0.
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.2.5...v3.3.0)

---
updated-dependencies:
- dependency-name: org.springframework.boot
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update build.gradle

* Update gradle.properties

* Delete CHANGELOG.md

* Update README.md

* Update build.gradle

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Roman Khlebnov <[email protected]>
  • Loading branch information
dependabot[bot] and SuppieRK authored Jun 11, 2024
1 parent 3171f43 commit daaf52e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 40 deletions.
26 changes: 0 additions & 26 deletions CHANGELOG.md

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ This version does not allow setting most of the local cache properties in favor
<dependency>
<groupId>io.github.suppierk</groupId>
<artifactId>spring-boot-multilevel-cache-starter</artifactId>
<version>3.2.5.2</version>
<version>3.3.0.0</version>
</dependency>
```

### Gradle
```groovy
implementation 'io.github.suppierk:spring-boot-multilevel-cache-starter:3.2.5.2'
implementation 'io.github.suppierk:spring-boot-multilevel-cache-starter:3.3.0.0'
```

## Default configuration
Expand Down
18 changes: 7 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ plugins {
id 'java-library'

// Core frameworks
id 'org.springframework.boot' version '3.2.5'
id 'io.spring.dependency-management' version '1.1.4'
id 'org.springframework.boot' version '3.3.0'
id 'io.spring.dependency-management' version '1.1.5'

// Publishing
id 'com.vanniktech.maven.publish' version '0.28.0'
Expand Down Expand Up @@ -42,8 +42,10 @@ configurations {
}
}

ext {
set('springCloudVersion', "2023.0.1")
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:2023.0.2"
}
}

dependencies {
Expand Down Expand Up @@ -71,12 +73,6 @@ dependencies {
testImplementation 'org.testcontainers:junit-jupiter'
}

dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}

test {
useJUnitPlatform()
}
Expand Down Expand Up @@ -133,4 +129,4 @@ tasks.withType(Copy).configureEach {
tasks.withType(JavaCompile).configureEach {
options.encoding = StandardCharsets.UTF_8.name()
dependsOn(spotlessJavaCheck)
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SONATYPE_AUTOMATIC_RELEASE=true

GROUP=io.github.suppierk
POM_ARTIFACT_ID=spring-boot-multilevel-cache-starter
VERSION_NAME=3.2.5.2
VERSION_NAME=3.3.0.0
POM_PACKAGING=jar

POM_NAME=Spring Boot Multilevel Cache Starter
Expand Down

0 comments on commit daaf52e

Please sign in to comment.