Adjusts the gradle DSL language to the latest deprecations

This commit is contained in:
Vitor Pamplona
2025-07-24 09:53:00 -04:00
parent e76bffd048
commit 25e92666e0
6 changed files with 42 additions and 42 deletions

View File

@@ -10,7 +10,7 @@ pluginManagement {
mavenCentral()
gradlePluginPortal()
maven {
url "https://jitpack.io"
url = "https://jitpack.io"
content {
includeModule 'com.github.UnifiedPush', 'android-connector'
}
@@ -23,8 +23,8 @@ dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
maven { url = "https://jitpack.io" }
maven { url = "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
}
}