Skip to content

Commit

Permalink
Fix snapshot instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-solomon committed Jan 19, 2024
1 parent 90e9061 commit 8a5907d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reference/snapshot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ To utilize snapshot versions in Maven projects, you'll need to make the followin

* Update the version numbers of the `rewrite-maven-plugin` and all of its dependencies to use the latest snapshot versions.
Snapshot versions are 1 minor version ahead of the [latest release](/reference/latest-versions-of-every-openrewrite-module.md) with `-SNAPSHOT` added to the end.
For instance, if the latest release is `2.1.2`, the snapshot version would be `2.2.0-SNAPSHOT`: <!-- DO NOT BUMP-->
For instance, if the latest release is `2.1.2`, the snapshot version would be `2.1.2-SNAPSHOT`: <!-- DO NOT BUMP-->

```xml
<build>
Expand All @@ -72,7 +72,7 @@ To utilize snapshot versions in Maven projects, you'll need to make the followin
<dependency>
<groupId>org.openrewrite.recipe</groupId>
<artifactId>rewrite-github-actions</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>2.1.2-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit 8a5907d

Please sign in to comment.