From 16fdc289d7d8dc9f1001c93470435d46e2d556ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Waldemar=20=C5=BBurowski?= <45210402+wzur-r3@users.noreply.github.com> Date: Thu, 5 Aug 2021 20:19:16 +0200 Subject: [PATCH] INFRA-1549: added SCIJAVA repo (#6939) * `com.github.detro:ghostdriver` is gone from repositories configured already * SCI Java public repo has it, and it is configured to resolve `com.github.detro` group only --- samples/irs-demo/build.gradle | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/samples/irs-demo/build.gradle b/samples/irs-demo/build.gradle index eefb2806ae..fe26f08b60 100644 --- a/samples/irs-demo/build.gradle +++ b/samples/irs-demo/build.gradle @@ -78,6 +78,15 @@ dependencies { testCompile "com.github.detro:ghostdriver:$ghostdriver_version" } +repositories { + maven { + url 'https://maven.scijava.org/content/repositories/public/' + content { + includeGroup 'com.github.detro' + } + } +} + bootRepackage { enabled = false }