Update: MIgrate Gradle scripts to Kotlin

This commit is contained in:
machiav3lli
2022-04-13 00:10:13 +02:00
parent 4f3df6c1dd
commit 6d2669961a
4 changed files with 238 additions and 221 deletions

16
settings.gradle.kts Normal file
View File

@ -0,0 +1,16 @@
pluginManagement {
repositories {
mavenCentral()
google()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
google()
maven(url = "https://jitpack.io")
}
}
rootProject.name = "Neo Store"