From e909f2e687b86e6a485dc81302ef0dbd12ff8116 Mon Sep 17 00:00:00 2001 From: Austin Shalit Date: Tue, 16 May 2023 00:47:34 -0700 Subject: [PATCH] [build] Update gradle cache repo name (#5334) Artifactory now does not allow repos that end in -cache. Update virtual repo naming to track this new limitation --- settings.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.gradle b/settings.gradle index 03e06fde3d..6ae1063e89 100644 --- a/settings.gradle +++ b/settings.gradle @@ -66,7 +66,7 @@ buildCache { enabled = !System.getenv().containsKey("CI") } remote(HttpBuildCache) { - url = "https://frcmaven.wpi.edu/artifactory/wpilib-generic-gradle-cache/" + url = "https://frcmaven.wpi.edu/artifactory/wpilib-generic-gradlecache/" String user = cred('ARTIFACTORY_PUBLISH_USERNAME') String pass = cred('ARTIFACTORY_PUBLISH_PASSWORD') if (user && pass) {