Update example versions

master
Sam Brannen 5 years ago
parent
commit
5626637365
  1. 10
      Spring-Framework-Artifacts.md

10
Spring-Framework-Artifacts.md

@ -22,7 +22,7 @@ The Spring Framework publishes GA (general availability) versions to [Maven Cent @@ -22,7 +22,7 @@ The Spring Framework publishes GA (general availability) versions to [Maven Cent
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.4</version>
<version>5.3.9</version>
</dependency>
```
@ -32,7 +32,7 @@ Snapshot, milestone, and release candidate versions are published to an [Artifac @@ -32,7 +32,7 @@ Snapshot, milestone, and release candidate versions are published to an [Artifac
### Snapshots
Add the following to resolve snapshot versions, e.g. `5.0.2.BUILD-SNAPSHOT`:
Add the following to resolve snapshot versions – for example, `5.3.10-SNAPSHOT`:
```xml
<repository>
@ -46,13 +46,13 @@ Add the following to resolve snapshot versions, e.g. `5.0.2.BUILD-SNAPSHOT`: @@ -46,13 +46,13 @@ Add the following to resolve snapshot versions, e.g. `5.0.2.BUILD-SNAPSHOT`:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.2.BUILD-SNAPSHOT</version>
<version>5.3.10-SNAPSHOT</version>
</dependency>
```
### Milestones and Release Candidates
Add the following to resolve milestone and RC versions, e.g. `5.1.0.M1` or `5.1.0.RC1`:
Add the following to resolve milestone and RC versions, e.g. `5.3.0-M1` or `5.3.0-RC1`:
```xml
<repository>
@ -66,7 +66,7 @@ Add the following to resolve milestone and RC versions, e.g. `5.1.0.M1` or `5.1. @@ -66,7 +66,7 @@ Add the following to resolve milestone and RC versions, e.g. `5.1.0.M1` or `5.1.
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.1.0.M1</version>
<version>5.3.0-M1</version>
</dependency>
```

Loading…
Cancel
Save