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 {
classpath(Deps.Gradle.kotlin)
classpath(Deps.Gradle.kotlinSerialization)
classpath(Deps.Gradle.androidGradle)
classpath(Deps.Gradle.sqlDelight)
classpath(Deps.Gradle.shadow)
classpath(Deps.Gradle.kotlinter)
with(Deps.Gradle) {
classpath(kotlin)
classpath(kotlinSerialization)
classpath(androidGradle)
classpath(sqlDelight)
classpath(shadow)
classpath(kotlinter)
}
}
}

View file

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