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
0de72d2d
Commit
0de72d2d
authored
May 22, 2017
by
Spencer Gibb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Going back to snapshots
parent
7898ad77
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
293 additions
and
293 deletions
+293
-293
pom.xml
docs/pom.xml
+1
-1
mvnw.cmd
mvnw.cmd
+143
-143
pom.xml
pom.xml
+4
-4
pom.xml
spring-cloud-netflix-core/pom.xml
+1
-1
RibbonClientPreprocessorOverridesRetryTests.java
...x/ribbon/RibbonClientPreprocessorOverridesRetryTests.java
+120
-120
pom.xml
spring-cloud-netflix-dependencies/pom.xml
+2
-2
pom.xml
spring-cloud-netflix-eureka-client/pom.xml
+1
-1
pom.xml
spring-cloud-netflix-eureka-server/pom.xml
+1
-1
pom.xml
spring-cloud-netflix-hystrix-amqp/pom.xml
+1
-1
pom.xml
spring-cloud-netflix-hystrix-dashboard/pom.xml
+1
-1
pom.xml
spring-cloud-netflix-hystrix-stream/pom.xml
+1
-1
pom.xml
spring-cloud-netflix-sidecar/pom.xml
+1
-1
pom.xml
spring-cloud-netflix-spectator/pom.xml
+1
-1
pom.xml
spring-cloud-netflix-turbine-stream/pom.xml
+1
-1
pom.xml
spring-cloud-netflix-turbine/pom.xml
+1
-1
pom.xml
spring-cloud-starter-archaius/pom.xml
+1
-1
pom.xml
spring-cloud-starter-atlas/pom.xml
+1
-1
pom.xml
spring-cloud-starter-eureka-server/pom.xml
+1
-1
pom.xml
spring-cloud-starter-eureka/pom.xml
+1
-1
pom.xml
spring-cloud-starter-feign/pom.xml
+1
-1
pom.xml
spring-cloud-starter-hystrix-dashboard/pom.xml
+1
-1
pom.xml
spring-cloud-starter-hystrix/pom.xml
+1
-1
pom.xml
spring-cloud-starter-ribbon/pom.xml
+1
-1
pom.xml
spring-cloud-starter-spectator/pom.xml
+1
-1
pom.xml
spring-cloud-starter-turbine-amqp/pom.xml
+1
-1
pom.xml
spring-cloud-starter-turbine-stream/pom.xml
+1
-1
pom.xml
spring-cloud-starter-turbine/pom.xml
+1
-1
pom.xml
spring-cloud-starter-zuul/pom.xml
+1
-1
No files found.
docs/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
</parent>
</parent>
<artifactId>
spring-cloud-netflix-docs
</artifactId>
<artifactId>
spring-cloud-netflix-docs
</artifactId>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
...
...
mvnw.cmd
View file @
0de72d2d
This diff is collapsed.
Click to expand it.
pom.xml
View file @
0de72d2d
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
<name>
Spring Cloud Netflix
</name>
<name>
Spring Cloud Netflix
</name>
<description>
Spring Cloud Netflix
</description>
<description>
Spring Cloud Netflix
</description>
...
@@ -24,9 +24,9 @@
...
@@ -24,9 +24,9 @@
<main.basedir>
${basedir}
</main.basedir>
<main.basedir>
${basedir}
</main.basedir>
<netty.version>
4.0.27.Final
</netty.version>
<netty.version>
4.0.27.Final
</netty.version>
<jackson.version>
2.7.3
</jackson.version>
<jackson.version>
2.7.3
</jackson.version>
<spring-cloud-commons.version>
1.2.
2.RELEASE
</spring-cloud-commons.version>
<spring-cloud-commons.version>
1.2.
1.BUILD-SNAPSHOT
</spring-cloud-commons.version>
<spring-cloud-config.version>
1.3.1.
RELEASE
</spring-cloud-config.version>
<spring-cloud-config.version>
1.3.1.
BUILD-SNAPSHOT
</spring-cloud-config.version>
<spring-cloud-stream.version>
Chelsea.
SR2
</spring-cloud-stream.version>
<spring-cloud-stream.version>
Chelsea.
BUILD-SNAPSHOT
</spring-cloud-stream.version>
<!-- Sonar -->
<!-- Sonar -->
<surefire.plugin.version>
2.19.1
</surefire.plugin.version>
<surefire.plugin.version>
2.19.1
</surefire.plugin.version>
...
...
spring-cloud-netflix-core/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-netflix-core
</artifactId>
<artifactId>
spring-cloud-netflix-core
</artifactId>
...
...
spring-cloud-netflix-core/src/test/java/org/springframework/cloud/netflix/ribbon/RibbonClientPreprocessorOverridesRetryTests.java
View file @
0de72d2d
/*
/*
* Copyright 2013-2016 the original author or authors.
* Copyright 2013-2016 the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* See the License for the specific language governing permissions and
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
cloud
.
netflix
.
ribbon
;
package
org
.
springframework
.
cloud
.
netflix
.
ribbon
;
import
java.net.ConnectException
;
import
java.net.ConnectException
;
import
java.net.SocketException
;
import
java.net.SocketException
;
import
java.net.SocketTimeoutException
;
import
java.net.SocketTimeoutException
;
import
java.net.UnknownHostException
;
import
java.net.UnknownHostException
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.junit.runner.RunWith
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration
;
import
org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.cloud.netflix.archaius.ArchaiusAutoConfiguration
;
import
org.springframework.cloud.netflix.archaius.ArchaiusAutoConfiguration
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.context.annotation.Import
;
import
org.springframework.context.annotation.Import
;
import
org.springframework.test.annotation.DirtiesContext
;
import
org.springframework.test.annotation.DirtiesContext
;
import
org.springframework.test.context.junit4.SpringJUnit4ClassRunner
;
import
org.springframework.test.context.junit4.SpringJUnit4ClassRunner
;
import
org.springframework.util.Assert
;
import
org.springframework.util.Assert
;
import
com.netflix.client.DefaultLoadBalancerRetryHandler
;
import
com.netflix.client.DefaultLoadBalancerRetryHandler
;
import
com.netflix.client.RetryHandler
;
import
com.netflix.client.RetryHandler
;
import
com.netflix.client.config.IClientConfig
;
import
com.netflix.client.config.IClientConfig
;
/**
/**
* @author Tyler Van Gorder
* @author Tyler Van Gorder
*/
*/
@RunWith
(
SpringJUnit4ClassRunner
.
class
)
@RunWith
(
SpringJUnit4ClassRunner
.
class
)
@SpringBootTest
(
classes
=
RibbonClientPreprocessorOverridesRetryTests
.
TestConfiguration
.
class
,
value
=
{
@SpringBootTest
(
classes
=
RibbonClientPreprocessorOverridesRetryTests
.
TestConfiguration
.
class
,
value
=
{
"customRetry.ribbon.MaxAutoRetries=0"
,
"customRetry.ribbon.MaxAutoRetries=0"
,
"customRetry.ribbon.MaxAutoRetriesNextServer=1"
,
"customRetry.ribbon.MaxAutoRetriesNextServer=1"
,
"customRetry.ribbon.OkToRetryOnAllOperations=true"
})
"customRetry.ribbon.OkToRetryOnAllOperations=true"
})
@DirtiesContext
@DirtiesContext
public
class
RibbonClientPreprocessorOverridesRetryTests
{
public
class
RibbonClientPreprocessorOverridesRetryTests
{
@Autowired
@Autowired
private
SpringClientFactory
factory
;
private
SpringClientFactory
factory
;
@Test
@Test
public
void
customRetryIsConfigured
()
throws
Exception
{
public
void
customRetryIsConfigured
()
throws
Exception
{
RibbonLoadBalancerContext
context
=
(
RibbonLoadBalancerContext
)
this
.
factory
RibbonLoadBalancerContext
context
=
(
RibbonLoadBalancerContext
)
this
.
factory
.
getLoadBalancerContext
(
"customRetry"
);
.
getLoadBalancerContext
(
"customRetry"
);
Assert
.
isInstanceOf
(
RetryRibbonConfiguration
.
CustomRetryHandler
.
class
,
Assert
.
isInstanceOf
(
RetryRibbonConfiguration
.
CustomRetryHandler
.
class
,
context
.
getRetryHandler
());
context
.
getRetryHandler
());
Assert
.
isTrue
(
context
.
getRetryHandler
().
getMaxRetriesOnSameServer
()
==
0
);
Assert
.
isTrue
(
context
.
getRetryHandler
().
getMaxRetriesOnSameServer
()
==
0
);
Assert
.
isTrue
(
context
.
getRetryHandler
().
getMaxRetriesOnNextServer
()
==
1
);
Assert
.
isTrue
(
context
.
getRetryHandler
().
getMaxRetriesOnNextServer
()
==
1
);
Assert
.
isTrue
(
context
.
getRetryHandler
()
Assert
.
isTrue
(
context
.
getRetryHandler
()
.
isCircuitTrippingException
(
new
UnknownHostException
(
"Unknown Host"
)));
.
isCircuitTrippingException
(
new
UnknownHostException
(
"Unknown Host"
)));
}
}
@Configuration
@Configuration
@RibbonClient
(
name
=
"customRetry"
,
configuration
=
RetryRibbonConfiguration
.
class
)
@RibbonClient
(
name
=
"customRetry"
,
configuration
=
RetryRibbonConfiguration
.
class
)
@Import
({
PropertyPlaceholderAutoConfiguration
.
class
,
ArchaiusAutoConfiguration
.
class
,
@Import
({
PropertyPlaceholderAutoConfiguration
.
class
,
ArchaiusAutoConfiguration
.
class
,
RibbonAutoConfiguration
.
class
})
RibbonAutoConfiguration
.
class
})
protected
static
class
TestConfiguration
{
protected
static
class
TestConfiguration
{
}
}
}
}
@Configuration
@Configuration
class
RetryRibbonConfiguration
{
class
RetryRibbonConfiguration
{
@Bean
@Bean
public
RetryHandler
retryHandler
(
IClientConfig
config
)
{
public
RetryHandler
retryHandler
(
IClientConfig
config
)
{
return
new
CustomRetryHandler
(
config
);
return
new
CustomRetryHandler
(
config
);
}
}
class
CustomRetryHandler
extends
DefaultLoadBalancerRetryHandler
{
class
CustomRetryHandler
extends
DefaultLoadBalancerRetryHandler
{
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
private
List
<
Class
<?
extends
Throwable
>>
retriable
=
new
ArrayList
()
{
private
List
<
Class
<?
extends
Throwable
>>
retriable
=
new
ArrayList
()
{
{
{
add
(
UnknownHostException
.
class
);
add
(
UnknownHostException
.
class
);
add
(
ConnectException
.
class
);
add
(
ConnectException
.
class
);
add
(
SocketTimeoutException
.
class
);
add
(
SocketTimeoutException
.
class
);
}
}
};
};
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
private
List
<
Class
<?
extends
Throwable
>>
circuitRelated
=
new
ArrayList
()
{
private
List
<
Class
<?
extends
Throwable
>>
circuitRelated
=
new
ArrayList
()
{
{
{
add
(
UnknownHostException
.
class
);
add
(
UnknownHostException
.
class
);
add
(
SocketException
.
class
);
add
(
SocketException
.
class
);
add
(
SocketTimeoutException
.
class
);
add
(
SocketTimeoutException
.
class
);
}
}
};
};
CustomRetryHandler
(
IClientConfig
config
)
{
CustomRetryHandler
(
IClientConfig
config
)
{
super
(
config
);
super
(
config
);
}
}
@Override
@Override
protected
List
<
Class
<?
extends
Throwable
>>
getRetriableExceptions
()
{
protected
List
<
Class
<?
extends
Throwable
>>
getRetriableExceptions
()
{
return
retriable
;
return
retriable
;
}
}
@Override
@Override
protected
List
<
Class
<?
extends
Throwable
>>
getCircuitRelatedExceptions
()
{
protected
List
<
Class
<?
extends
Throwable
>>
getCircuitRelatedExceptions
()
{
return
circuitRelated
;
return
circuitRelated
;
}
}
}
}
}
}
spring-cloud-netflix-dependencies/pom.xml
View file @
0de72d2d
...
@@ -5,11 +5,11 @@
...
@@ -5,11 +5,11 @@
<parent>
<parent>
<artifactId>
spring-cloud-dependencies-parent
</artifactId>
<artifactId>
spring-cloud-dependencies-parent
</artifactId>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<version>
1.3.
2.RELEASE
</version>
<version>
1.3.
1.BUILD-SNAPSHOT
</version>
<relativePath/>
<relativePath/>
</parent>
</parent>
<artifactId>
spring-cloud-netflix-dependencies
</artifactId>
<artifactId>
spring-cloud-netflix-dependencies
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
<name>
spring-cloud-netflix-dependencies
</name>
<name>
spring-cloud-netflix-dependencies
</name>
<description>
Spring Cloud Netflix Dependencies
</description>
<description>
Spring Cloud Netflix Dependencies
</description>
...
...
spring-cloud-netflix-eureka-client/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-netflix-eureka-client
</artifactId>
<artifactId>
spring-cloud-netflix-eureka-client
</artifactId>
...
...
spring-cloud-netflix-eureka-server/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-netflix-eureka-server
</artifactId>
<artifactId>
spring-cloud-netflix-eureka-server
</artifactId>
...
...
spring-cloud-netflix-hystrix-amqp/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-netflix-hystrix-amqp
</artifactId>
<artifactId>
spring-cloud-netflix-hystrix-amqp
</artifactId>
...
...
spring-cloud-netflix-hystrix-dashboard/pom.xml
View file @
0de72d2d
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<properties>
<properties>
...
...
spring-cloud-netflix-hystrix-stream/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-netflix-hystrix-stream
</artifactId>
<artifactId>
spring-cloud-netflix-hystrix-stream
</artifactId>
...
...
spring-cloud-netflix-sidecar/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-netflix-sidecar
</artifactId>
<artifactId>
spring-cloud-netflix-sidecar
</artifactId>
...
...
spring-cloud-netflix-spectator/pom.xml
View file @
0de72d2d
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-netflix-spectator
</artifactId>
<artifactId>
spring-cloud-netflix-spectator
</artifactId>
...
...
spring-cloud-netflix-turbine-stream/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-netflix-turbine-stream
</artifactId>
<artifactId>
spring-cloud-netflix-turbine-stream
</artifactId>
...
...
spring-cloud-netflix-turbine/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-netflix-turbine
</artifactId>
<artifactId>
spring-cloud-netflix-turbine
</artifactId>
...
...
spring-cloud-starter-archaius/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-archaius
</artifactId>
<artifactId>
spring-cloud-starter-archaius
</artifactId>
...
...
spring-cloud-starter-atlas/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-atlas
</artifactId>
<artifactId>
spring-cloud-starter-atlas
</artifactId>
...
...
spring-cloud-starter-eureka-server/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-eureka-server
</artifactId>
<artifactId>
spring-cloud-starter-eureka-server
</artifactId>
...
...
spring-cloud-starter-eureka/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-eureka
</artifactId>
<artifactId>
spring-cloud-starter-eureka
</artifactId>
...
...
spring-cloud-starter-feign/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-feign
</artifactId>
<artifactId>
spring-cloud-starter-feign
</artifactId>
...
...
spring-cloud-starter-hystrix-dashboard/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-hystrix-dashboard
</artifactId>
<artifactId>
spring-cloud-starter-hystrix-dashboard
</artifactId>
...
...
spring-cloud-starter-hystrix/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-hystrix
</artifactId>
<artifactId>
spring-cloud-starter-hystrix
</artifactId>
...
...
spring-cloud-starter-ribbon/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-ribbon
</artifactId>
<artifactId>
spring-cloud-starter-ribbon
</artifactId>
...
...
spring-cloud-starter-spectator/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-spectator
</artifactId>
<artifactId>
spring-cloud-starter-spectator
</artifactId>
...
...
spring-cloud-starter-turbine-amqp/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-turbine-amqp
</artifactId>
<artifactId>
spring-cloud-starter-turbine-amqp
</artifactId>
...
...
spring-cloud-starter-turbine-stream/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-turbine-stream
</artifactId>
<artifactId>
spring-cloud-starter-turbine-stream
</artifactId>
...
...
spring-cloud-starter-turbine/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-turbine
</artifactId>
<artifactId>
spring-cloud-starter-turbine
</artifactId>
...
...
spring-cloud-starter-zuul/pom.xml
View file @
0de72d2d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<parent>
<parent>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-netflix
</artifactId>
<artifactId>
spring-cloud-netflix
</artifactId>
<version>
1.3.1.
RELEASE
</version>
<version>
1.3.1.
BUILD-SNAPSHOT
</version>
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
<relativePath>
..
</relativePath>
<!-- lookup parent from repository -->
</parent>
</parent>
<artifactId>
spring-cloud-starter-zuul
</artifactId>
<artifactId>
spring-cloud-starter-zuul
</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