From 4610e25b05c6c94bcebdad461c963b8d89c40969 Mon Sep 17 00:00:00 2001 From: Rhys Arkins Date: Mon, 22 Jun 2020 22:51:03 +0200 Subject: [PATCH] fix(clojure): set registryStrategy --- lib/datasource/clojure/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/datasource/clojure/index.ts b/lib/datasource/clojure/index.ts index 05dfdf989d0227..8e86fdded4ee9e 100644 --- a/lib/datasource/clojure/index.ts +++ b/lib/datasource/clojure/index.ts @@ -3,5 +3,6 @@ import { MAVEN_REPO } from '../maven/common'; export const id = 'clojure'; export const defaultRegistryUrls = ['https://clojars.org/repo', MAVEN_REPO]; +export const registryStrategy = 'merge'; export { getReleases } from '../maven';