Skip to content

Commit

Permalink
Merge pull request #5967 from vector-im/feature/bma/dependabot_workar…
Browse files Browse the repository at this point in the history
…ound

Try to workaround Dependabot issue #5961
  • Loading branch information
bmarty authored May 9, 2022
2 parents e35bb77 + e35ee03 commit 3900895
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
14 changes: 11 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ buildscript {
apply from: 'dependencies_groups.gradle'

repositories {
google()
// Do not use `google()`, it prevents Dependabot from working properly
maven {
url 'https://maven.google.com'
}
maven {
url "https://plugins.gradle.org/m2/"
}
Expand Down Expand Up @@ -47,6 +50,7 @@ allprojects {
apply plugin: "org.jlleitschuh.gradle.ktlint"

repositories {
// Do not use `mavenCentral()`, it prevents Dependabot from working properly
maven {
url 'https://repo1.maven.org/maven2'
content {
Expand All @@ -71,14 +75,18 @@ allprojects {
groups.jitsi.group.each { includeGroup it }
}
}
google {
// Do not use `google()`, it prevents Dependabot from working properly
maven {
url 'https://maven.google.com'
content {
groups.google.regex.each { includeGroupByRegex it }
groups.google.group.each { includeGroup it }
}
}
//noinspection JcenterRepositoryObsolete
jcenter {
// Do not use `jcenter`, it prevents Dependabot from working properly
maven {
url 'https://jcenter.bintray.com'
content {
groups.jcenter.regex.each { includeGroupByRegex it }
groups.jcenter.group.each { includeGroup it }
Expand Down
10 changes: 8 additions & 2 deletions library/jsonviewer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ apply plugin: 'com.jakewharton.butterknife'

buildscript {
repositories {
google()
maven { url 'https://repo1.maven.org/maven2' }
// Do not use `google()`, it prevents Dependabot from working properly
maven {
url 'https://maven.google.com'
}
// Do not use `mavenCentral()`, it prevents Dependabot from working properly
maven {
url 'https://repo1.maven.org/maven2'
}
}
dependencies {
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.3'
Expand Down
5 changes: 4 additions & 1 deletion matrix-sdk-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ apply plugin: "org.jetbrains.dokka"

buildscript {
repositories {
maven { url 'https://repo1.maven.org/maven2' }
// Do not use `mavenCentral()`, it prevents Dependabot from working properly
maven {
url 'https://repo1.maven.org/maven2'
}
}
dependencies {
classpath "io.realm:realm-gradle-plugin:10.9.0"
Expand Down

0 comments on commit 3900895

Please sign in to comment.