Skip to content

Commit

Permalink
build: prune unused dependency repositories for android and jvm
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed Apr 5, 2024
1 parent 358b43c commit 15ac8c8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
4 changes: 1 addition & 3 deletions bdk-android/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ includeBuild("plugins")

pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
google()
}
}

dependencyResolutionManagement {
repositories {
mavenCentral()
google()
}
}
6 changes: 1 addition & 5 deletions bdk-jvm/lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ plugins {
id("org.bitcoindevkit.plugins.generate-jvm-bindings")
}

// repositories {
// mavenCentral()
// }

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
Expand All @@ -41,7 +37,7 @@ tasks.test {
testing {
suites {
val test by getting(JvmTestSuite::class) {
useKotlinTest("1.6.10")
useKotlinTest("1.9.23")
}
}
}
Expand Down
3 changes: 0 additions & 3 deletions bdk-jvm/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@ includeBuild("plugins")

pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
}

dependencyResolutionManagement {
repositories {
mavenCentral()
google()
}
}

0 comments on commit 15ac8c8

Please sign in to comment.