From 9f2f93129ba3f86f1ca312219d694277a3cdc310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Mon, 27 Feb 2023 14:48:28 +0100 Subject: [PATCH] Move HttpServiceProxyFactoryExtensions.kt to spring-web module HttpServiceProxyFactoryExtensions.kt has been mistakenly created in spring-webflux module instead of spring-web, breaking JPMS for WebFlux users. This commit moves this file and related tests to the spring-web module. Closes gh-30042 --- .../web/service/invoker/HttpServiceProxyFactoryExtensions.kt | 0 .../web/service/invoker/HttpServiceProxyFactoryExtensionsTests.kt | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename {spring-webflux => spring-web}/src/main/kotlin/org/springframework/web/service/invoker/HttpServiceProxyFactoryExtensions.kt (100%) rename {spring-webflux => spring-web}/src/test/kotlin/org/springframework/web/service/invoker/HttpServiceProxyFactoryExtensionsTests.kt (100%) diff --git a/spring-webflux/src/main/kotlin/org/springframework/web/service/invoker/HttpServiceProxyFactoryExtensions.kt b/spring-web/src/main/kotlin/org/springframework/web/service/invoker/HttpServiceProxyFactoryExtensions.kt similarity index 100% rename from spring-webflux/src/main/kotlin/org/springframework/web/service/invoker/HttpServiceProxyFactoryExtensions.kt rename to spring-web/src/main/kotlin/org/springframework/web/service/invoker/HttpServiceProxyFactoryExtensions.kt diff --git a/spring-webflux/src/test/kotlin/org/springframework/web/service/invoker/HttpServiceProxyFactoryExtensionsTests.kt b/spring-web/src/test/kotlin/org/springframework/web/service/invoker/HttpServiceProxyFactoryExtensionsTests.kt similarity index 100% rename from spring-webflux/src/test/kotlin/org/springframework/web/service/invoker/HttpServiceProxyFactoryExtensionsTests.kt rename to spring-web/src/test/kotlin/org/springframework/web/service/invoker/HttpServiceProxyFactoryExtensionsTests.kt