Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit e8d322d

Browse files
authored
Add /release to maven.remoteRepositories (#5335)
1 parent fbcf1f6 commit e8d322d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

spring-cloud-dataflow-docs/src/main/asciidoc/appendix-howto.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can set the Maven properties, such as the local Maven repository location, r
1515
Alternatively, you can set the properties by setting the `SPRING_APPLICATION_JSON` environment property for the Data Flow server.
1616

1717
The remote Maven repositories need to be configured explicitly if the applications are resolved by using the Maven repository.
18-
The one exception to this rule is for the `local` Data Flow server installation, which already has the `https://repo.maven.apache.org/maven2` and `https://repo.spring.io/snapshot` remote repositories pre-configured.
18+
The one exception to this rule is for the `local` Data Flow server installation, which already has Maven Central and the Spring Artifactory remote repositories pre-configured.
1919
The other (`non-local`) server installations have no default value for remote repositories.
2020

2121
NOTE: If you configure your own remote repositories, be sure to add Maven central (`https://repo.maven.apache.org/maven2`) as it is not automatically added for you.

spring-cloud-starter-dataflow-server/src/main/resources/dataflow-server.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ maven:
1010
remoteRepositories:
1111
mavenCentral:
1212
url: https://repo.maven.apache.org/maven2
13-
springRepo:
13+
springSnapshot:
1414
url: https://repo.spring.io/snapshot
15+
springMilestone:
16+
url: https://repo.spring.io/milestone
17+
springRelease:
18+
url: https://repo.spring.io/release
1519

1620
spring:
1721
application:

0 commit comments

Comments
 (0)