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
f38ccc35
Commit
f38ccc35
authored
Oct 17, 2014
by
Spencer Gibb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated to ribbon 2.0-RC9
parent
948b176c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
3 deletions
+34
-3
pom.xml
pom.xml
+19
-2
pom.xml
spring-cloud-netflix-core/pom.xml
+14
-0
SpringClientFactory.java
...ngframework/cloud/netflix/ribbon/SpringClientFactory.java
+1
-1
No files found.
pom.xml
View file @
f38ccc35
...
...
@@ -129,6 +129,11 @@
</dependency>
<dependency>
<groupId>
com.netflix.ribbon
</groupId>
<artifactId>
ribbon
</artifactId>
<version>
${ribbon.version}
</version>
</dependency>
<dependency>
<groupId>
com.netflix.ribbon
</groupId>
<artifactId>
ribbon-core
</artifactId>
<version>
${ribbon.version}
</version>
</dependency>
...
...
@@ -149,6 +154,11 @@
</exclusions>
</dependency>
<dependency>
<groupId>
com.netflix.rxjava
</groupId>
<artifactId>
rxjava-core
</artifactId>
<version>
${netflix.rxjava.version}
</version>
</dependency>
<dependency>
<groupId>
com.netflix.turbine
</groupId>
<artifactId>
turbine-core
</artifactId>
<version>
${turbine.version}
</version>
...
...
@@ -172,6 +182,12 @@
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
1.12.6
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
<version>
18.0
</version>
</dependency>
<dependency>
<groupId>
com.sun.jersey
</groupId>
...
...
@@ -215,10 +231,11 @@
<archaius.version>
0.6.0
</archaius.version>
<eureka.version>
1.1.135
</eureka.version>
<feign.version>
6.1.2
</feign.version>
<hystrix.version>
1.4.0-RC
4
</hystrix.version>
<ribbon.version>
0.3.13
</ribbon.version>
<hystrix.version>
1.4.0-RC
5
</hystrix.version>
<ribbon.version>
2.0-RC9
</ribbon.version>
<turbine.version>
0.4
</turbine.version>
<zuul.version>
1.0.24
</zuul.version>
<netflix.rxjava.version>
0.20.6
</netflix.rxjava.version>
</properties>
</project>
spring-cloud-netflix-core/pom.xml
View file @
f38ccc35
...
...
@@ -71,6 +71,11 @@
<artifactId>
hystrix-javanica
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
com.netflix.ribbon
</groupId>
<artifactId>
ribbon
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
com.netflix.ribbon
</groupId>
<artifactId>
ribbon-core
</artifactId>
...
...
@@ -97,6 +102,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
com.netflix.rxjava
</groupId>
<artifactId>
rxjava-core
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
...
...
@@ -108,6 +118,10 @@
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
</dependency>
<dependency>
<groupId>
org.neo4j
</groupId>
<artifactId>
neo4j-cypher-compiler-2.1
</artifactId>
...
...
spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/ribbon/SpringClientFactory.java
View file @
f38ccc35
...
...
@@ -222,7 +222,7 @@ public class SpringClientFactory {
return
config
;
}
else
{
try
{
config
=
(
IClientConfig
)
clientConfigClass
.
newInstance
();
config
=
clientConfigClass
.
newInstance
();
config
.
loadProperties
(
name
);
}
catch
(
Throwable
e
)
{
log
.
error
(
"Unable to create client config instance"
,
e
);
...
...
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