Skip to content

Commit 67aec8a

Browse files
committed
chore: add versions-maven-plugin to simplify dependency upgrades
1 parent 7cea71c commit 67aec8a

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,23 @@
277277
</dependency>
278278
</dependencies>
279279
</plugin>
280+
<plugin>
281+
<groupId>org.codehaus.mojo</groupId>
282+
<artifactId>versions-maven-plugin</artifactId>
283+
<version>2.18.0</version>
284+
<configuration>
285+
<allowSnapshots>false</allowSnapshots>
286+
<generateBackupPoms>false</generateBackupPoms>
287+
<ruleSet>
288+
<ignoreVersions>
289+
<ignoreVersion>
290+
<type>regex</type>
291+
<version>(.+-SNAPSHOT|.+-(M|RC|rc)\d|.+-(alpha|beta)\d?)</version>
292+
</ignoreVersion>
293+
</ignoreVersions>
294+
</ruleSet>
295+
</configuration>
296+
</plugin>
280297
<plugin>
281298
<groupId>org.apache.maven.plugins</groupId>
282299
<artifactId>maven-antrun-plugin</artifactId>

0 commit comments

Comments
 (0)