Skip to content

v2.2.4

Choose a tag to compare

@damianmalczewski damianmalczewski released this 29 Mar 12:45
· 60 commits to main since this release
Immutable release. Only release title and notes can be modified.

Spring Boot

https://central.sonatype.com/namespace/io.github.problem4j

  1. Maven:
    <dependencies>
        <!-- pick one for your project -->
        <dependency>
            <groupId>io.github.problem4j</groupId>
            <artifactId>problem4j-spring-webflux</artifactId>
            <version>2.2.4</version>
        </dependency>
        <dependency>
            <groupId>io.github.problem4j</groupId>
            <artifactId>problem4j-spring-webmvc</artifactId>
            <version>2.2.4</version>
        </dependency>
    </dependencies>
  2. Gradle (Kotlin DSL):
    dependencies {
        // pick one for  your project
        implementation("io.github.problem4j:problem4j-spring-webflux:2.2.4")
        implementation("io.github.problem4j:problem4j-spring-webmvc:2.2.4")
    }

Fixed

  • Fix formatting of detailFormat for resolving cause exceptions.
  • Drop transitive dependency to kotlin-stdlib (added accidentally by Kotlin plugin, used in tests only).