Upgrade to springdoc-openapi 2

org.openrewrite.java.spring.boot3.UpgradeSpringDoc_2

Migrate applications to the latest spring-doc 2 release. This recipe will modify an application's build files and make changes code changes for removed/updated APIs. See the upgrade guide

Tags

  • spring

Recipe source

GitHub, Issue Tracker, Maven Central

  • groupId: org.openrewrite.recipe

  • artifactId: rewrite-spring

  • version: 5.8.0

This recipe is composed of more than one recipe. If you want to customize the set of recipes this is composed of, you can find and copy the GitHub source for the recipe from the link above.

Usage

This recipe has no required configuration options. It can be activated by adding a dependency on org.openrewrite.recipe:rewrite-spring:5.8.0 in your build file or by running a shell command (in which case no build changes are needed):

  1. Add the following to your build.gradle file:

build.gradle
plugins {
    id("org.openrewrite.rewrite") version("6.12.0")
}

rewrite {
    activeRecipe("org.openrewrite.java.spring.boot3.UpgradeSpringDoc_2")
}

repositories {
    mavenCentral()
}

dependencies {
    rewrite("org.openrewrite.recipe:rewrite-spring:5.8.0")
}
  1. Run gradle rewriteRun to run the recipe.

Definition

  • Remove a Gradle or Maven dependency

    • groupId: org.springdoc

    • artifactId: springdoc-openapi-data-rest

  • Remove a Gradle or Maven dependency

    • groupId: org.springdoc

    • artifactId: springdoc-openapi-groovy

  • Remove a Gradle or Maven dependency

    • groupId: org.springdoc

    • artifactId: springdoc-openapi-hateoas

  • Remove a Gradle or Maven dependency

    • groupId: org.springdoc

    • artifactId: springdoc-openapi-javadoc

  • Remove a Gradle or Maven dependency

    • groupId: org.springdoc

    • artifactId: springdoc-openapi-kotlin

  • Remove a Gradle or Maven dependency

    • groupId: org.springdoc

    • artifactId: springdoc-openapi-security

  • Change Gradle or Maven dependency

    • oldGroupId: org.springdoc

    • oldArtifactId: springdoc-openapi-common

    • newArtifactId: springdoc-openapi-starter-common

    • newVersion: 2.x

  • Change Gradle or Maven dependency

    • oldGroupId: org.springdoc

    • oldArtifactId: springdoc-openapi-webmvc-core

    • newArtifactId: springdoc-openapi-starter-webmvc-api

    • newVersion: 2.x

  • Change Gradle or Maven dependency

    • oldGroupId: org.springdoc

    • oldArtifactId: springdoc-openapi-webflux-core

    • newArtifactId: springdoc-openapi-starter-webflux-api

    • newVersion: 2.x

  • Change Gradle or Maven dependency

    • oldGroupId: org.springdoc

    • oldArtifactId: springdoc-openapi-ui

    • newArtifactId: springdoc-openapi-starter-webmvc-ui

    • newVersion: 2.x

  • Change Gradle or Maven dependency

    • oldGroupId: org.springdoc

    • oldArtifactId: springdoc-openapi-webflux-ui

    • newArtifactId: springdoc-openapi-starter-webflux-ui

    • newVersion: 2.x

  • Change type

    • oldFullyQualifiedTypeName: org.springdoc.core.SpringDocUtils

    • newFullyQualifiedTypeName: org.springdoc.core.utils.SpringDocUtils

  • Change type

    • oldFullyQualifiedTypeName: org.springdoc.api.annotations.ParameterObject

    • newFullyQualifiedTypeName: org.springdoc.core.annotations.ParameterObject

  • Change type

    • oldFullyQualifiedTypeName: org.springdoc.core.GroupedOpenApi

    • newFullyQualifiedTypeName: org.springdoc.core.models.GroupedOpenApi

  • Change type

    • oldFullyQualifiedTypeName: org.springdoc.core.customizers.OpenApiCustomiser

    • newFullyQualifiedTypeName: org.springdoc.core.customizers.OpenApiCustomizer

  • Change type

    • oldFullyQualifiedTypeName: org.springdoc.core.Constants

    • newFullyQualifiedTypeName: org.springdoc.core.utils.Constants

  • Change type

    • oldFullyQualifiedTypeName: org.springdoc.core.SwaggerUiConfigParameters

    • newFullyQualifiedTypeName: org.springdoc.core.properties.SwaggerUiConfigParameters

  • Change method name

    • methodPattern: org.springdoc.core.models.GroupedOpenApi.Builder addOpenApiCustomiser(..)

    • newMethodName: addOpenApiCustomizer

    • matchOverrides: true

See how this recipe works across multiple open-source repositories

The community edition of the Moderne platform enables you to easily run recipes across thousands of open-source repositories.

Please contact Moderne for more information about safely running the recipes on your own codebase in a private SaaS.

Last updated