Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Refactor repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
ILIYANGERMANOV committed May 19, 2022
1 parent feb2760 commit a8f93c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
4 changes: 1 addition & 3 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import java.net.URI

plugins {
`kotlin-dsl`
id("org.gradle.test-retry") version "1.2.0"
Expand All @@ -16,7 +14,7 @@ tasks.test {
repositories {
google()
mavenCentral()
maven { url = URI.create("https://jitpack.io") }
maven(url = "https://jitpack.io")
}

dependencies {
Expand Down
6 changes: 1 addition & 5 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
import java.net.URI

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url = URI.create("https://jitpack.io")
}
maven(url = "https://jitpack.io")
}
}
rootProject.name = "Ivy Wallet"
Expand Down

0 comments on commit a8f93c9

Please sign in to comment.