Skip to content

Commit a1ec842

Browse files
committed
Fixup Undertow autoconfigure package ordering
1 parent 9e6374f commit a1ec842

14 files changed

+15
-15
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/server/undertow/UndertowReactiveManagementChildContextConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
2727
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type;
2828
import org.springframework.boot.context.properties.EnableConfigurationProperties;
29+
import org.springframework.boot.undertow.autoconfigure.reactive.UndertowReactiveWebServerAutoConfiguration;
2930
import org.springframework.boot.undertow.reactive.UndertowReactiveWebServerFactory;
30-
import org.springframework.boot.undertow.reactive.autoconfigure.UndertowReactiveWebServerAutoConfiguration;
3131
import org.springframework.boot.web.server.reactive.ReactiveWebServerFactory;
3232
import org.springframework.context.annotation.Bean;
3333

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/server/undertow/UndertowReactiveManagementContextAutoConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
2727
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
2828
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type;
29-
import org.springframework.boot.undertow.reactive.autoconfigure.UndertowReactiveWebServerAutoConfiguration;
29+
import org.springframework.boot.undertow.autoconfigure.reactive.UndertowReactiveWebServerAutoConfiguration;
3030
import org.springframework.boot.web.server.reactive.ReactiveWebServerFactory;
3131
import org.springframework.context.annotation.Bean;
3232

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/server/undertow/UndertowServletManagementContextAutoConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
2727
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
2828
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type;
29-
import org.springframework.boot.undertow.servlet.autoconfigure.UndertowServletWebServerAutoConfiguration;
29+
import org.springframework.boot.undertow.autoconfigure.servlet.UndertowServletWebServerAutoConfiguration;
3030
import org.springframework.boot.web.server.servlet.ServletWebServerFactory;
3131
import org.springframework.context.annotation.Bean;
3232

Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.undertow.reactive.autoconfigure;
17+
package org.springframework.boot.undertow.autoconfigure.reactive;
1818

1919
import io.undertow.Undertow;
2020

Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
/**
1818
* Classes related to the auto-configuration of a reactive web server using Undertow.
1919
*/
20-
package org.springframework.boot.undertow.reactive.autoconfigure;
20+
package org.springframework.boot.undertow.autoconfigure.reactive;
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.undertow.servlet.autoconfigure;
17+
package org.springframework.boot.undertow.autoconfigure.servlet;
1818

1919
import io.undertow.Undertow;
2020
import io.undertow.websockets.jsr.Bootstrap;
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.undertow.servlet.autoconfigure;
17+
package org.springframework.boot.undertow.autoconfigure.servlet;
1818

1919
import org.springframework.boot.autoconfigure.web.ServerProperties;
2020
import org.springframework.boot.undertow.autoconfigure.UndertowServerProperties;
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.undertow.servlet.autoconfigure;
17+
package org.springframework.boot.undertow.autoconfigure.servlet;
1818

1919
import io.undertow.servlet.api.DeploymentInfo;
2020
import io.undertow.websockets.jsr.WebSocketDeploymentInfo;
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
/**
1818
* Classes related to the auto-configuration of a servlet web server using Undertow.
1919
*/
20-
package org.springframework.boot.undertow.servlet.autoconfigure;
20+
package org.springframework.boot.undertow.autoconfigure.servlet;
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
org.springframework.boot.undertow.reactive.autoconfigure.UndertowReactiveWebServerAutoConfiguration
2-
org.springframework.boot.undertow.servlet.autoconfigure.UndertowServletWebServerAutoConfiguration
1+
org.springframework.boot.undertow.autoconfigure.reactive.UndertowReactiveWebServerAutoConfiguration
2+
org.springframework.boot.undertow.autoconfigure.servlet.UndertowServletWebServerAutoConfiguration
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.undertow.reactive.autoconfigure;
17+
package org.springframework.boot.undertow.autoconfigure.reactive;
1818

1919
import io.undertow.Undertow.Builder;
2020
import org.junit.jupiter.api.Test;
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.undertow.servlet.autoconfigure;
17+
package org.springframework.boot.undertow.autoconfigure.servlet;
1818

1919
import io.undertow.Undertow.Builder;
2020
import io.undertow.servlet.api.DeploymentInfo;
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.undertow.servlet.autoconfigure;
17+
package org.springframework.boot.undertow.autoconfigure.servlet;
1818

1919
import org.junit.jupiter.api.Test;
2020

Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.boot.undertow.servlet.autoconfigure;
17+
package org.springframework.boot.undertow.autoconfigure.servlet;
1818

1919
import jakarta.servlet.ServletContextListener;
2020

0 commit comments

Comments
 (0)