From d8eee5886f79d632469ba79520103a1947577639 Mon Sep 17 00:00:00 2001 From: Jacob van Lingen Date: Tue, 15 Apr 2025 11:48:47 +0200 Subject: [PATCH] Update proof-of-value.md --- .../moderne-platform/getting-started/proof-of-value.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/administrator-documentation/moderne-platform/getting-started/proof-of-value.md b/docs/administrator-documentation/moderne-platform/getting-started/proof-of-value.md index d28bcbdd..79d2faf6 100644 --- a/docs/administrator-documentation/moderne-platform/getting-started/proof-of-value.md +++ b/docs/administrator-documentation/moderne-platform/getting-started/proof-of-value.md @@ -58,7 +58,7 @@ _The recipes below are listed in order of increasing complexity. You can click t * [Exclude test dependencies](https://app.moderne.io/recipes/org.openrewrite.maven.ExcludeDependency) like JUnit from the compile scope * ```bash - mod run . --recipe ExcludeDependency -P "groupId=com.google.guava" -P "artifactId=guava" -P "scope=compile" + mod run . --recipe ExcludeDependency -P "groupId=org.junit.vintage" -P "junit-vintage-engine" -P "scope=compile" ``` * [Remove redundant explicit dependency versions](https://app.moderne.io/recipes/org.openrewrite.maven.RemoveRedundantDependencyVersions) to clean up Maven POMs *