From 0970a3ef627c324cb14f9677bcf1fa1711289d52 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Mon, 11 Jun 2018 05:21:27 -0400 Subject: [PATCH] Adding boot autoconfigure processor --- spring-cloud-netflix-core/pom.xml | 5 +++++ spring-cloud-netflix-eureka-client/pom.xml | 5 +++++ spring-cloud-netflix-eureka-server/pom.xml | 5 +++++ spring-cloud-netflix-hystrix-stream/pom.xml | 5 +++++ spring-cloud-netflix-spectator/pom.xml | 5 +++++ spring-cloud-netflix-turbine-stream/pom.xml | 5 +++++ spring-cloud-starter-archaius/pom.xml | 5 +++++ spring-cloud-starter-atlas/pom.xml | 5 +++++ spring-cloud-starter-eureka-server/pom.xml | 5 +++++ spring-cloud-starter-eureka/pom.xml | 5 +++++ spring-cloud-starter-feign/pom.xml | 5 +++++ spring-cloud-starter-hystrix-dashboard/pom.xml | 5 +++++ spring-cloud-starter-hystrix/pom.xml | 5 +++++ spring-cloud-starter-ribbon/pom.xml | 5 +++++ spring-cloud-starter-spectator/pom.xml | 5 +++++ spring-cloud-starter-turbine-amqp/pom.xml | 5 +++++ spring-cloud-starter-turbine-stream/pom.xml | 5 +++++ spring-cloud-starter-turbine/pom.xml | 5 +++++ spring-cloud-starter-zuul/pom.xml | 5 +++++ 19 files changed, 95 insertions(+) diff --git a/spring-cloud-netflix-core/pom.xml b/spring-cloud-netflix-core/pom.xml index aa5790e13..a255eef30 100644 --- a/spring-cloud-netflix-core/pom.xml +++ b/spring-cloud-netflix-core/pom.xml @@ -201,6 +201,11 @@ jackson-dataformat-smile true + + org.springframework.boot + spring-boot-autoconfigure-processor + true + com.googlecode.protobuf-java-format protobuf-java-format diff --git a/spring-cloud-netflix-eureka-client/pom.xml b/spring-cloud-netflix-eureka-client/pom.xml index 581304cf8..9a8960348 100644 --- a/spring-cloud-netflix-eureka-client/pom.xml +++ b/spring-cloud-netflix-eureka-client/pom.xml @@ -111,6 +111,11 @@ ribbon-httpclient true + + org.springframework.boot + spring-boot-autoconfigure-processor + true + org.springframework.boot spring-boot-starter-security diff --git a/spring-cloud-netflix-eureka-server/pom.xml b/spring-cloud-netflix-eureka-server/pom.xml index eac6175b8..d0b04fdbe 100644 --- a/spring-cloud-netflix-eureka-server/pom.xml +++ b/spring-cloud-netflix-eureka-server/pom.xml @@ -103,6 +103,11 @@ compile true + + org.springframework.boot + spring-boot-autoconfigure-processor + true + org.springframework.restdocs spring-restdocs-restassured diff --git a/spring-cloud-netflix-hystrix-stream/pom.xml b/spring-cloud-netflix-hystrix-stream/pom.xml index 4b33fcfee..ea3660379 100644 --- a/spring-cloud-netflix-hystrix-stream/pom.xml +++ b/spring-cloud-netflix-hystrix-stream/pom.xml @@ -45,6 +45,11 @@ com.netflix.hystrix hystrix-core + + org.springframework.boot + spring-boot-autoconfigure-processor + true + com.netflix.hystrix hystrix-metrics-event-stream diff --git a/spring-cloud-netflix-spectator/pom.xml b/spring-cloud-netflix-spectator/pom.xml index d93e4df30..2a84c59a1 100644 --- a/spring-cloud-netflix-spectator/pom.xml +++ b/spring-cloud-netflix-spectator/pom.xml @@ -81,6 +81,11 @@ com.netflix.spectator spectator-reg-servo + + org.springframework.boot + spring-boot-autoconfigure-processor + true + org.springframework.boot spring-boot-starter-test diff --git a/spring-cloud-netflix-turbine-stream/pom.xml b/spring-cloud-netflix-turbine-stream/pom.xml index 2950c10ed..5294ae85e 100644 --- a/spring-cloud-netflix-turbine-stream/pom.xml +++ b/spring-cloud-netflix-turbine-stream/pom.xml @@ -109,6 +109,11 @@ spring-cloud-stream-binder-rabbit true + + org.springframework.boot + spring-boot-autoconfigure-processor + true + org.springframework.boot spring-boot-starter-test diff --git a/spring-cloud-starter-archaius/pom.xml b/spring-cloud-starter-archaius/pom.xml index 7b378c342..27eb283cc 100644 --- a/spring-cloud-starter-archaius/pom.xml +++ b/spring-cloud-starter-archaius/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-netflix-archaius + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-atlas/pom.xml b/spring-cloud-starter-atlas/pom.xml index dbc45dfc9..2479bbf4f 100644 --- a/spring-cloud-starter-atlas/pom.xml +++ b/spring-cloud-starter-atlas/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-netflix-atlas + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-eureka-server/pom.xml b/spring-cloud-starter-eureka-server/pom.xml index 399c05cb7..4235c6ad6 100644 --- a/spring-cloud-starter-eureka-server/pom.xml +++ b/spring-cloud-starter-eureka-server/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-netflix-eureka-server + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-eureka/pom.xml b/spring-cloud-starter-eureka/pom.xml index eeba7a03a..1d63547a5 100644 --- a/spring-cloud-starter-eureka/pom.xml +++ b/spring-cloud-starter-eureka/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-netflix-eureka-client + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-feign/pom.xml b/spring-cloud-starter-feign/pom.xml index 56fc7e0b1..6915fb813 100644 --- a/spring-cloud-starter-feign/pom.xml +++ b/spring-cloud-starter-feign/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-openfeign + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-hystrix-dashboard/pom.xml b/spring-cloud-starter-hystrix-dashboard/pom.xml index c22f2b79d..dad0623d2 100644 --- a/spring-cloud-starter-hystrix-dashboard/pom.xml +++ b/spring-cloud-starter-hystrix-dashboard/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-netflix-hystrix-dashboard + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-hystrix/pom.xml b/spring-cloud-starter-hystrix/pom.xml index bcae1927c..f5619b84e 100644 --- a/spring-cloud-starter-hystrix/pom.xml +++ b/spring-cloud-starter-hystrix/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-netflix-hystrix + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-ribbon/pom.xml b/spring-cloud-starter-ribbon/pom.xml index 276996d32..fa00263fd 100644 --- a/spring-cloud-starter-ribbon/pom.xml +++ b/spring-cloud-starter-ribbon/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-netflix-ribbon + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-spectator/pom.xml b/spring-cloud-starter-spectator/pom.xml index c37412b43..ac1d142d8 100644 --- a/spring-cloud-starter-spectator/pom.xml +++ b/spring-cloud-starter-spectator/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-netflix-spectator + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-turbine-amqp/pom.xml b/spring-cloud-starter-turbine-amqp/pom.xml index 86c2dc5f1..10ca38c80 100644 --- a/spring-cloud-starter-turbine-amqp/pom.xml +++ b/spring-cloud-starter-turbine-amqp/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-netflix-turbine-amqp + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-turbine-stream/pom.xml b/spring-cloud-starter-turbine-stream/pom.xml index 9572967b1..2868d81ba 100644 --- a/spring-cloud-starter-turbine-stream/pom.xml +++ b/spring-cloud-starter-turbine-stream/pom.xml @@ -25,5 +25,10 @@ org.springframework.cloud spring-cloud-starter-netflix-turbine-stream + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-turbine/pom.xml b/spring-cloud-starter-turbine/pom.xml index 745eb2a66..fc43a8da9 100644 --- a/spring-cloud-starter-turbine/pom.xml +++ b/spring-cloud-starter-turbine/pom.xml @@ -25,5 +25,10 @@ org.springframework.cloud spring-cloud-starter-netflix-turbine + + org.springframework.boot + spring-boot-autoconfigure-processor + true + diff --git a/spring-cloud-starter-zuul/pom.xml b/spring-cloud-starter-zuul/pom.xml index ad3ca9ca3..414e865db 100644 --- a/spring-cloud-starter-zuul/pom.xml +++ b/spring-cloud-starter-zuul/pom.xml @@ -24,5 +24,10 @@ org.springframework.cloud spring-cloud-starter-netflix-zuul + + org.springframework.boot + spring-boot-autoconfigure-processor + true +