Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-cloud-netflix
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-cloud-netflix
Commits
32a90336
Commit
32a90336
authored
Jan 26, 2015
by
Spencer Gibb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
upgrade to netflix eureka to 1.1.147
fixes gh-180
parent
49b81607
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
1 deletion
+32
-1
pom.xml
pom.xml
+13
-1
pom.xml
spring-cloud-netflix-core/pom.xml
+6
-0
EurekaClientConfigBean.java
...ramework/cloud/netflix/eureka/EurekaClientConfigBean.java
+4
-0
pom.xml
spring-cloud-netflix-eureka-server/pom.xml
+9
-0
No files found.
pom.xml
View file @
32a90336
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
<properties>
<properties>
<main.basedir>
${basedir}
</main.basedir>
<main.basedir>
${basedir}
</main.basedir>
<archaius.version>
0.6.3
</archaius.version>
<archaius.version>
0.6.3
</archaius.version>
<eureka.version>
1.1.14
5
</eureka.version>
<eureka.version>
1.1.14
7
</eureka.version>
<feign.version>
7.1.0
</feign.version>
<feign.version>
7.1.0
</feign.version>
<hystrix.version>
1.4.0-RC6
</hystrix.version>
<hystrix.version>
1.4.0-RC6
</hystrix.version>
<ribbon.version>
2.0-RC13
</ribbon.version>
<ribbon.version>
2.0-RC13
</ribbon.version>
...
@@ -153,6 +153,18 @@
...
@@ -153,6 +153,18 @@
</exclusion>
</exclusion>
</exclusions>
</exclusions>
</dependency>
</dependency>
<!-- Eureka core dep that is now optional -->
<dependency>
<groupId>
com.thoughtworks.xstream
</groupId>
<artifactId>
xstream
</artifactId>
<version>
1.4.2
</version>
</dependency>
<!-- Eureka server dep that is now optional -->
<dependency>
<groupId>
com.netflix.blitz4j
</groupId>
<artifactId>
blitz4j
</artifactId>
<version>
1.34
</version>
</dependency>
<dependency>
<dependency>
<groupId>
com.netflix.feign
</groupId>
<groupId>
com.netflix.feign
</groupId>
<artifactId>
feign-core
</artifactId>
<artifactId>
feign-core
</artifactId>
...
...
spring-cloud-netflix-core/pom.xml
View file @
32a90336
...
@@ -54,6 +54,12 @@
...
@@ -54,6 +54,12 @@
<artifactId>
eureka-core
</artifactId>
<artifactId>
eureka-core
</artifactId>
<optional>
true
</optional>
<optional>
true
</optional>
</dependency>
</dependency>
<!-- Eureka core deps that are now optional -->
<dependency>
<groupId>
com.thoughtworks.xstream
</groupId>
<artifactId>
xstream
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<dependency>
<groupId>
net.java.dev.rome
</groupId>
<groupId>
net.java.dev.rome
</groupId>
<artifactId>
rome
</artifactId>
<artifactId>
rome
</artifactId>
...
...
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/eureka/EurekaClientConfigBean.java
View file @
32a90336
...
@@ -115,6 +115,10 @@ public class EurekaClientConfigBean implements EurekaClientConfig {
...
@@ -115,6 +115,10 @@ public class EurekaClientConfigBean implements EurekaClientConfig {
private
boolean
fetchRegistry
=
true
;
private
boolean
fetchRegistry
=
true
;
private
String
dollarReplacement
=
"_-"
;
private
String
escapeCharReplacement
=
"__"
;
@Override
@Override
public
boolean
shouldGZipContent
()
{
public
boolean
shouldGZipContent
()
{
return
this
.
gZipContent
;
return
this
.
gZipContent
;
...
...
spring-cloud-netflix-eureka-server/pom.xml
View file @
32a90336
...
@@ -70,6 +70,15 @@
...
@@ -70,6 +70,15 @@
<groupId>
com.netflix.eureka
</groupId>
<groupId>
com.netflix.eureka
</groupId>
<artifactId>
eureka-core
</artifactId>
<artifactId>
eureka-core
</artifactId>
</dependency>
</dependency>
<!-- Eureka deps that are now optional in eureka -->
<dependency>
<groupId>
com.thoughtworks.xstream
</groupId>
<artifactId>
xstream
</artifactId>
</dependency>
<dependency>
<groupId>
com.netflix.blitz4j
</groupId>
<artifactId>
blitz4j
</artifactId>
</dependency>
<dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<artifactId>
lombok
</artifactId>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment