From c8ea5b1a085ba4d64d6cc96fd836545185667e82 Mon Sep 17 00:00:00 2001 From: Brian Flores Date: Tue, 28 Jan 2025 15:18:29 -0800 Subject: [PATCH] Fixes spotless on Java 11 (#3449) Signed-off-by: Brian Flores --- plugin/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/build.gradle b/plugin/build.gradle index 1bf6506776..5f36278557 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -473,7 +473,7 @@ spotless { removeUnusedImports() importOrder 'java', 'javax', 'org', 'com' - eclipse().configFile rootProject.file('.eclipseformat.xml') + eclipse().withP2Mirrors(Map.of("https://download.eclipse.org/", "https://mirror.umd.edu/eclipse/")).configFile rootProject.file('.eclipseformat.xml') } }