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
543adca9
Commit
543adca9
authored
Jul 20, 2014
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add build config for snapshot deploys
parent
7b60ea73
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
106 additions
and
0 deletions
+106
-0
pom.xml
pom.xml
+102
-0
EurekaClientConfigBean.java
...ework/platform/netflix/eureka/EurekaClientConfigBean.java
+4
-0
No files found.
pom.xml
View file @
543adca9
...
...
@@ -164,4 +164,106 @@
<zuul.version>
1.0.24
</zuul.version>
</properties>
<profiles>
<profile>
<id>
milestone
</id>
<distributionManagement>
<repository>
<id>
repo.spring.io
</id>
<name>
Spring Milestone Repository
</name>
<url>
https://repo.spring.io/libs-milestone-local
</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>
central
</id>
<distributionManagement>
<snapshotRepository>
<id>
sonatype-nexus-snapshots
</id>
<name>
Sonatype Nexus Snapshots
</name>
<url>
https://oss.sonatype.org/content/repositories/snapshots/
</url>
</snapshotRepository>
<repository>
<id>
sonatype-nexus-staging
</id>
<name>
Nexus Release Repository
</name>
<url>
https://oss.sonatype.org/service/local/staging/deploy/maven2/
</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-gpg-plugin
</artifactId>
<executions>
<execution>
<id>
sign-artifacts
</id>
<phase>
verify
</phase>
<goals>
<goal>
sign
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<!-- see 'staging' profile for dry-run deployment settings -->
<downloadUrl>
http://www.springsource.com/download/community
</downloadUrl>
<site>
<id>
spring-docs
</id>
<url>
scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-retry/docs/${project.version}
</url>
</site>
<repository>
<id>
repo.spring.io
</id>
<name>
Spring Release Repository
</name>
<url>
https://repo.spring.io/libs-release-local
</url>
</repository>
<snapshotRepository>
<id>
repo.spring.io
</id>
<name>
Spring Snapshot Repository
</name>
<url>
https://repo.spring.io/libs-snapshot-local
</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>
spring-snapshots
</id>
<name>
Spring Snapshots
</name>
<url>
http://repo.spring.io/snapshot
</url>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
<repository>
<id>
spring-milestones
</id>
<name>
Spring Milestones
</name>
<url>
http://repo.spring.io/milestone
</url>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>
spring-snapshots
</id>
<name>
Spring Snapshots
</name>
<url>
http://repo.spring.io/snapshot
</url>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>
spring-milestones
</id>
<name>
Spring Milestones
</name>
<url>
http://repo.spring.io/milestone
</url>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
spring-platform-netflix-core/src/main/java/org/springframework/platform/netflix/eureka/EurekaClientConfigBean.java
View file @
543adca9
...
...
@@ -80,6 +80,10 @@ public class EurekaClientConfigBean implements EurekaClientConfig {
private
int
cacheRefreshExecutorThreadPoolSize
=
2
;
private
Map
<
String
,
String
>
serviceUrl
=
new
HashMap
<
String
,
String
>();
{
serviceUrl
.
put
(
DEFAULT_ZONE
,
"http://localhost:8761/v2/"
);
}
private
boolean
gZipContent
=
true
;
...
...
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