diff --git a/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/NimbusJwtDecoderJwkSupport.java b/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/NimbusJwtDecoderJwkSupport.java
deleted file mode 100644
index 9c84cf3699..0000000000
--- a/oauth2/oauth2-jose/src/main/java/org/springframework/security/oauth2/jwt/NimbusJwtDecoderJwkSupport.java
+++ /dev/null
@@ -1,131 +0,0 @@
-/*
- * Copyright 2002-2019 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * https://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.springframework.security.oauth2.jwt;
-
-import java.util.Collections;
-import java.util.Map;
-
-import org.springframework.core.convert.converter.Converter;
-import org.springframework.security.oauth2.core.OAuth2TokenValidator;
-import org.springframework.security.oauth2.jose.jws.JwsAlgorithms;
-import org.springframework.security.oauth2.jose.jws.SignatureAlgorithm;
-import org.springframework.util.Assert;
-import org.springframework.web.client.RestOperations;
-
-/**
- * An implementation of a {@link JwtDecoder} that "decodes" a JSON Web Token (JWT) and
- * additionally verifies it's digital signature if the JWT is a JSON Web Signature (JWS).
- * The public key used for verification is obtained from the JSON Web Key (JWK) Set
- * {@code URL} supplied via the constructor.
- *
- *
- * NOTE: This implementation uses the Nimbus JOSE + JWT SDK internally.
- *
- * @author Joe Grandja
- * @author Josh Cummings
- * @since 5.0
- * @see JwtDecoder
- * @see NimbusJwtDecoder
- * @see JSON Web Token
- * (JWT)
- * @see JSON Web Signature
- * (JWS)
- * @see JSON Web Key
- * (JWK)
- * @see Nimbus
- * JOSE + JWT SDK
- * @deprecated Use {@link NimbusJwtDecoder} or {@link JwtDecoders} instead
- */
-@Deprecated
-public final class NimbusJwtDecoderJwkSupport implements JwtDecoder {
-
- private NimbusJwtDecoder.JwkSetUriJwtDecoderBuilder jwtDecoderBuilder;
-
- private OAuth2TokenValidator jwtValidator = JwtValidators.createDefault();
-
- private Converter