Skip to content

Commit f15b339

Browse files
committed
build.gradle: Fix deprecated property syntax
1 parent 0029952 commit f15b339

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ if (libs.versions.kotlin.get() != kotlinVersion) {
5050

5151
repositories {
5252
mavenCentral()
53-
maven { url "https://maven.fabricmc.net/" }
54-
maven { url "https://maven.architectury.dev/" }
53+
maven { url = "https://maven.fabricmc.net/" }
54+
maven { url = "https://maven.architectury.dev/" }
5555
maven {
56-
url "https://maven.minecraftforge.net/"
56+
url = "https://maven.minecraftforge.net/"
5757
content {
5858
excludeGroupByRegex "org\\.eclipse\\.?.*"
5959
}

0 commit comments

Comments
 (0)