Skip to content

Commit

Permalink
Remove "LATEST" versions from example pom as those cause problems whe…
Browse files Browse the repository at this point in the history
…n we try to load it as a recipe module
  • Loading branch information
sambsnyd committed Feb 29, 2024
1 parent f7e735e commit d179f22
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>LATEST</version>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -71,21 +71,21 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>LATEST</version>
<version>33.0.0-jre</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>LATEST</version>
<version>3.14.0</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>LATEST</version>
<version>6.1.4</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -95,14 +95,14 @@
<dependency>
<groupId>org.openrewrite.recipe</groupId>
<artifactId>rewrite-recipe-bom</artifactId>
<version>LATEST</version>
<version>2.7.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>LATEST</version>
<version>5.10.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -125,12 +125,12 @@
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>LATEST</version>
<version>1.18.30</version>
</path>
<path>
<groupId>org.openrewrite</groupId>
<artifactId>rewrite-templating</artifactId>
<version>LATEST</version>
<version>1.5.1</version>
</path>
</annotationProcessorPaths>
</configuration>
Expand Down

0 comments on commit d179f22

Please sign in to comment.