Commit 103bc777 by Spencer Gibb

moved hystrix dashboard to io.spring.platform.netflix

parent 777fad2a
...@@ -114,6 +114,17 @@ ...@@ -114,6 +114,17 @@
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.netflix.turbine</groupId>
<artifactId>turbine-core</artifactId>
<version>${turbine.version}</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.netflix.zuul</groupId> <groupId>com.netflix.zuul</groupId>
<artifactId>zuul-core</artifactId> <artifactId>zuul-core</artifactId>
<version>${zuul.version}</version> <version>${zuul.version}</version>
...@@ -134,6 +145,7 @@ ...@@ -134,6 +145,7 @@
<feign.version>6.1.2</feign.version> <feign.version>6.1.2</feign.version>
<hystrix.version>1.4.0-RC4</hystrix.version> <hystrix.version>1.4.0-RC4</hystrix.version>
<ribbon.version>0.3.12</ribbon.version> <ribbon.version>0.3.12</ribbon.version>
<turbine.version>0.4</turbine.version>
<zuul.version>1.0.24</zuul.version> <zuul.version>1.0.24</zuul.version>
</properties> </properties>
......
package hystrix; package io.spring.platform.netflix.hystrix;
import hystrix.stream.MockStreamServlet; import io.spring.platform.netflix.hystrix.stream.MockStreamServlet;
import hystrix.stream.ProxyStreamServlet; import io.spring.platform.netflix.hystrix.stream.ProxyStreamServlet;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.context.embedded.ServletRegistrationBean; import org.springframework.boot.context.embedded.ServletRegistrationBean;
......
package hystrix.stream; package io.spring.platform.netflix.hystrix.stream;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
......
package hystrix.stream; package io.spring.platform.netflix.hystrix.stream;
import org.apache.http.Header; import org.apache.http.Header;
import org.apache.http.HttpResponse; import org.apache.http.HttpResponse;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment