Restructure autoconfigure packages
Restructure modules packages so that all auto-configuration is organized under single top-level autoconfigure package.
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.r2dbc.actuate.health.autoconfigure;
|
||||
package org.springframework.boot.r2dbc.autoconfigure.health;
|
||||
|
||||
import io.r2dbc.spi.ConnectionFactory;
|
||||
|
||||
@@ -15,6 +15,6 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Auto-configuration for R2DBC metrics.
|
||||
* Auto-Configuration for R2DBC health.
|
||||
*/
|
||||
package org.springframework.boot.r2dbc.metrics.autoconfigure;
|
||||
package org.springframework.boot.r2dbc.autoconfigure.health;
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.r2dbc.metrics.autoconfigure;
|
||||
package org.springframework.boot.r2dbc.autoconfigure.metrics;
|
||||
|
||||
import io.micrometer.core.instrument.MeterRegistry;
|
||||
import io.micrometer.core.instrument.Tags;
|
||||
@@ -15,6 +15,6 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Auto-configuration for R2DBC health integration.
|
||||
* Auto-Configuration for R2DBC metrics.
|
||||
*/
|
||||
package org.springframework.boot.r2dbc.actuate.health.autoconfigure;
|
||||
package org.springframework.boot.r2dbc.autoconfigure.metrics;
|
||||
@@ -15,6 +15,6 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Auto-configuration for R2DBC observation.
|
||||
* Auto-Configuration for R2DBC observations.
|
||||
*/
|
||||
package org.springframework.boot.r2dbc.autoconfigure.observation;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
org.springframework.boot.r2dbc.actuate.health.autoconfigure.ConnectionFactoryHealthContributorAutoConfiguration
|
||||
org.springframework.boot.r2dbc.autoconfigure.R2dbcAutoConfiguration
|
||||
org.springframework.boot.r2dbc.autoconfigure.R2dbcInitializationAutoConfiguration
|
||||
org.springframework.boot.r2dbc.autoconfigure.R2dbcProxyAutoConfiguration
|
||||
org.springframework.boot.r2dbc.autoconfigure.R2dbcTransactionManagerAutoConfiguration
|
||||
org.springframework.boot.r2dbc.autoconfigure.health.ConnectionFactoryHealthContributorAutoConfiguration
|
||||
org.springframework.boot.r2dbc.autoconfigure.metrics.ConnectionPoolMetricsAutoConfiguration
|
||||
org.springframework.boot.r2dbc.autoconfigure.observation.R2dbcObservationAutoConfiguration
|
||||
org.springframework.boot.r2dbc.metrics.autoconfigure.ConnectionPoolMetricsAutoConfiguration
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.r2dbc.actuate.health.autoconfigure;
|
||||
package org.springframework.boot.r2dbc.autoconfigure.health;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.r2dbc.metrics.autoconfigure;
|
||||
package org.springframework.boot.r2dbc.autoconfigure.metrics;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.UUID;
|
||||
Reference in New Issue
Block a user