Merge pull request #60 from YektaDev/main

Replace jcenter with mavenCentral
This commit is contained in:
John O'Reilly 2021-06-20 19:33:33 +01:00 committed by GitHub
commit 45ba52eb76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 7 deletions

View file

@ -7,12 +7,14 @@ buildscript {
} }
dependencies { dependencies {
classpath(Deps.Gradle.kotlin) with(Deps.Gradle) {
classpath(Deps.Gradle.kotlinSerialization) classpath(kotlin)
classpath(Deps.Gradle.androidGradle) classpath(kotlinSerialization)
classpath(Deps.Gradle.sqlDelight) classpath(androidGradle)
classpath(Deps.Gradle.shadow) classpath(sqlDelight)
classpath(Deps.Gradle.kotlinter) classpath(shadow)
classpath(kotlinter)
}
} }
} }

View file

@ -3,5 +3,5 @@ plugins {
} }
repositories { repositories {
jcenter() mavenCentral()
} }