From 5a69dfb3eab856025cf948f532400b0b3c1d0aa4 Mon Sep 17 00:00:00 2001 From: Shanika Kuruppu Date: Tue, 21 Jul 2020 11:33:26 +1000 Subject: [PATCH] deps: stop auto updates of commons-lang3 The updated library only support Java 9+ but we still support Java 7 and 8. We want to stop renovate bot from asking us to update this dependency. --- renovate.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index d0dceed0464..0b62d5c474b 100644 --- a/renovate.json +++ b/renovate.json @@ -74,8 +74,14 @@ "^com.fasterxml.jackson.core" ], "groupName": "jackson dependencies" + }, + { + "packageNames": [ + "org.apache.commons:commons-lang3" + ], + "enabled": false } ], "semanticCommits": true, "masterIssue": true -} \ No newline at end of file +}