diff --git a/README.md b/README.md index 9272dd4..ec4a6d9 100644 --- a/README.md +++ b/README.md @@ -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 + + io.github.suppierk + spring-boot-multilevel-cache-starter + 3.3.1.0 + +``` + +### Gradle +```groovy +implementation 'io.github.suppierk:spring-boot-multilevel-cache-starter:3.3.1.0' +``` + ## Use cases ### Suitable for @@ -37,21 +52,6 @@ This version does not allow setting most of the local cache properties in favor 15-45m ``` -## Usage -### Maven -```xml - - io.github.suppierk - spring-boot-multilevel-cache-starter - 3.3.0.0 - -``` - -### Gradle -```groovy -implementation 'io.github.suppierk:spring-boot-multilevel-cache-starter:3.3.0.0' -``` - ## Default configuration ```yaml diff --git a/build.gradle b/build.gradle index 350193d..7bd4d65 100644 --- a/build.gradle +++ b/build.gradle @@ -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' diff --git a/gradle.properties b/gradle.properties index 9d33651..84b9559 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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