From 4444e461cb885f8d05c635fd37865b39a6366377 Mon Sep 17 00:00:00 2001 From: Susan Hert Date: Wed, 3 May 2023 14:42:11 -0700 Subject: [PATCH] Use artifactory repos that don't proxy for third-party repos (#145) --- standalone/settings.gradle | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/standalone/settings.gradle b/standalone/settings.gradle index 3d506bd..38441c5 100644 --- a/standalone/settings.gradle +++ b/standalone/settings.gradle @@ -1,9 +1,11 @@ buildscript { repositories { + mavenCentral() + gradlePluginPortal() mavenLocal() // These repositories contain the LabKey gradle plugin maven { - url "${artifactory_contextUrl}/plugins-release" + url "${artifactory_contextUrl}/plugins-release-no-proxy" } maven { url "${artifactory_contextUrl}/plugins-snapshot-local" @@ -31,11 +33,11 @@ gradle.beforeProject { project -> mavenCentral() maven { // Use this repository when relying on release versions of the LabKey artifacts and their external dependencies - url "${project.artifactory_contextUrl}/libs-release" + url "${project.artifactory_contextUrl}/libs-release-no-proxy" } maven { // Use this repository when relying on snapshot versions of LabKey artifacts - url "${project.artifactory_contextUrl}/libs-snapshot" + url "${project.artifactory_contextUrl}/libs-snapshot-no-proxy" } } }