From 044bf9ffdedb0ae0e35d37ece8efe7bb1702eec8 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Tue, 28 Nov 2023 16:42:27 +0100 Subject: [PATCH] fix(datasource/maven): restore registryStrategy=merge (#26013) --- lib/modules/datasource/maven/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/datasource/maven/index.ts b/lib/modules/datasource/maven/index.ts index b0b22d9336..3b2c752d87 100644 --- a/lib/modules/datasource/maven/index.ts +++ b/lib/modules/datasource/maven/index.ts @@ -67,7 +67,7 @@ export class MavenDatasource extends Datasource { override readonly defaultVersioning: string = mavenVersioning.id; - override readonly registryStrategy: RegistryStrategy = 'hunt'; + override readonly registryStrategy: RegistryStrategy = 'merge'; constructor(id = MavenDatasource.id) { super(id); -- GitLab