Skip to content

Commit 928ee61

Browse files
committed
work around dependabot gradle bug
1 parent 37d5389 commit 928ee61

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ tasks.jar {
1515
}
1616

1717
repositories {
18-
mavenCentral()
18+
// dependabot cannot handle mavenCentral()
19+
maven {
20+
url = uri("https://repo.maven.apache.org/maven2")
21+
}
1922
}
2023

2124
dependencies {

0 commit comments

Comments
 (0)