summaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorconorsmith <conor.smith42@gmail.com>2023-09-03 16:40:59 +0200
committerArne Schwabe <arne@rfc2549.org>2023-10-11 12:36:19 +0200
commit5719f6dc6bc35096af5922d410c2175463fea974 (patch)
tree731bdfca4789a712c4d048f7631982da6b70da47 /build.gradle.kts
parent29e3cc3727732fe9cbe32b1e7991b77d90290fbb (diff)
Use gradle catalog to align project dependencies across modules/gradle files
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts26
1 files changed, 4 insertions, 22 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index b6c58bb8..435eb00f 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -3,25 +3,7 @@
* Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
*/
-
-buildscript {
- var kotlin_version: String by extra
-
- kotlin_version = "1.9.0"
- repositories {
- google()
- mavenCentral()
- }
- dependencies {
- classpath("com.android.tools.build:gradle:8.1.1")
- classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
- }
-}
-
-allprojects {
- repositories {
- google()
- mavenCentral()
- maven(url = "https://jitpack.io")
- }
-}
+plugins {
+ alias(libs.plugins.android.application) apply false
+ alias(libs.plugins.kotlin.android) apply false
+} \ No newline at end of file