From 3b560e6a9f8bea874788c5ccaa2020de5dc86f8a Mon Sep 17 00:00:00 2001 From: stephengold Date: Sun, 22 Dec 2024 15:37:37 -0800 Subject: [PATCH] settings.gradle: avoid using (deprecated) space-assignment syntax --- settings.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.gradle b/settings.gradle index 813e928..b454125 100644 --- a/settings.gradle +++ b/settings.gradle @@ -4,8 +4,8 @@ dependencyResolutionManagement { repositories { //mavenLocal() // to find libraries installed locally mavenCentral() // to find libraries released to the Maven Central repository - //maven { url 'https://s01.oss.sonatype.org/content/groups/staging' } // to find libraries staged but not yet released - //maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots' } // to find public snapshots of libraries + //maven { url = 'https://s01.oss.sonatype.org/content/groups/staging' } // to find libraries staged but not yet released + //maven { url = 'https://s01.oss.sonatype.org/content/repositories/snapshots' } // to find public snapshots of libraries } }