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

Bump org.springframework.boot from 3.3.0 to 3.3.1 #30

Merged
merged 4 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ Opinionated version of multi-level caching for [Spring Boot](https://spring.io/p

This version does not allow setting most of the local cache properties in favor of managing local cache expiry by itself.

## Usage
### Maven
```xml
<dependency>
<groupId>io.github.suppierk</groupId>
<artifactId>spring-boot-multilevel-cache-starter</artifactId>
<version>3.3.1.0</version>
</dependency>
```

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

## Use cases

### Suitable for
Expand Down Expand Up @@ -37,21 +52,6 @@ This version does not allow setting most of the local cache properties in favor
15-45m
```

## Usage
### Maven
```xml
<dependency>
<groupId>io.github.suppierk</groupId>
<artifactId>spring-boot-multilevel-cache-starter</artifactId>
<version>3.3.0.0</version>
</dependency>
```

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

## Default configuration

```yaml
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ plugins {
id 'java-library'

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

// Publishing
id 'com.vanniktech.maven.publish' version '0.28.0'
id 'com.vanniktech.maven.publish' version '0.29.0'

// Utility
// id 'jacoco'
Expand Down
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.3.0.0
VERSION_NAME=3.3.1.0
POM_PACKAGING=jar

POM_NAME=Spring Boot Multilevel Cache Starter
Expand Down
Loading