Restructure autoconfigure packages

Restructure modules packages so that all auto-configuration is
organized under single top-level autoconfigure package.
This commit is contained in:
Phillip Webb
2025-06-11 16:29:17 -07:00
parent e60af6a8c7
commit 3de1e27b64
499 changed files with 1133 additions and 1464 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.jms.actuate.health.autoconfigure;
package org.springframework.boot.jms.autoconfigure.health;
import jakarta.jms.ConnectionFactory;

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2025 the original author or authors.
* Copyright 2012-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.
@@ -15,6 +15,6 @@
*/
/**
* Auto-configuration for JMS health integration.
* Auto-configuration for JMS health.
*/
package org.springframework.boot.jms.actuate.health.autoconfigure;
package org.springframework.boot.jms.autoconfigure.health;

View File

@@ -1,3 +1,3 @@
org.springframework.boot.jms.actuate.health.autoconfigure.JmsHealthContributorAutoConfiguration
org.springframework.boot.jms.autoconfigure.JmsAutoConfiguration
org.springframework.boot.jms.autoconfigure.JndiConnectionFactoryAutoConfiguration
org.springframework.boot.jms.autoconfigure.health.JmsHealthContributorAutoConfiguration

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.jms.actuate.health.autoconfigure;
package org.springframework.boot.jms.autoconfigure.health;
import jakarta.jms.ConnectionFactory;
import org.junit.jupiter.api.Test;