From 1c394677902e486d90a752672e461953d6db47e4 Mon Sep 17 00:00:00 2001 From: Stelios Voutsinas Date: Tue, 13 Aug 2024 12:37:26 -0700 Subject: [PATCH] Remove jcenter repo as it is obsolete and add mavenCentral --- changelog.d/20240813_193515_steliosvoutsinas_DM_45739.md | 7 +++++++ tap/build.gradle | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 changelog.d/20240813_193515_steliosvoutsinas_DM_45739.md diff --git a/changelog.d/20240813_193515_steliosvoutsinas_DM_45739.md b/changelog.d/20240813_193515_steliosvoutsinas_DM_45739.md new file mode 100644 index 0000000..4c10b35 --- /dev/null +++ b/changelog.d/20240813_193515_steliosvoutsinas_DM_45739.md @@ -0,0 +1,7 @@ +### Removed + +- Remove jcenter repo as it is obsolete and no longer used by cadc + +### Other Changes + +- Added mavenCentral and jCenter repos (match what we have in lsst-tap-service) diff --git a/tap/build.gradle b/tap/build.gradle index 69575f8..504f94e 100644 --- a/tap/build.gradle +++ b/tap/build.gradle @@ -4,8 +4,9 @@ plugins { } repositories { - jcenter() + mavenCentral() mavenLocal() + maven { url = 'https://www.cadc-ccda.hia-iha.nrc-cnrc.gc.ca/m2repo' }