Update versions

master
Sam Brannen 4 years ago
parent
commit
1f8cf2873d
  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
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId> <artifactId>spring-context</artifactId>
<version>5.3.9</version> <version>5.3.16</version>
</dependency> </dependency>
``` ```
@ -32,7 +32,7 @@ Snapshot, milestone, and release candidate versions are published to an [Artifac
### Snapshots ### Snapshots
Add the following to resolve snapshot versions – for example, `5.3.10-SNAPSHOT`: Add the following to resolve snapshot versions – for example, `5.3.17-SNAPSHOT`:
```xml ```xml
<repository> <repository>
@ -46,13 +46,13 @@ Add the following to resolve snapshot versions – for example, `5.3.10-SNAPSHOT
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId> <artifactId>spring-context</artifactId>
<version>5.3.10-SNAPSHOT</version> <version>5.3.17-SNAPSHOT</version>
</dependency> </dependency>
``` ```
### Milestones and Release Candidates ### Milestones and Release Candidates
Add the following to resolve milestone and RC versions – for example, `5.3.0-M1` or `5.3.0-RC1`: Add the following to resolve milestone and RC versions – for example, `6.0.0-M2` or `6.0.0-RC1`:
```xml ```xml
<repository> <repository>
@ -66,7 +66,7 @@ Add the following to resolve milestone and RC versions – for example, `5.3.0-M
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId> <artifactId>spring-context</artifactId>
<version>5.3.0-M1</version> <version>6.0.0-M2</version>
</dependency> </dependency>
``` ```

Loading…
Cancel
Save