From 04d330edae64a61c95566bbdc17a67303cc16c9a Mon Sep 17 00:00:00 2001 From: Bogdan Mukvich Date: Fri, 18 Aug 2023 12:01:06 +0200 Subject: [PATCH] Add cleaning instruction to artifacts tests README --- repo/artifacts-tests/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/repo/artifacts-tests/README.md b/repo/artifacts-tests/README.md index d2dfd84270a..add0a705762 100644 --- a/repo/artifacts-tests/README.md +++ b/repo/artifacts-tests/README.md @@ -5,7 +5,10 @@ This module contains tests for changes in pom files for all maven artifacts we p To reproduce locally build all artifacts first: ```shell +# clean local m2 from old artifacts to avoid unrelated failures +find ~/.m2/repository/org/jetbrains/kotlin -name "*-1.9.255*" -delete + ./gradlew install cd libraries mvn install -DskipTests -``` \ No newline at end of file +```