123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- ext {
- kotlinVersion = '2.1.0'
- hilt_version = '2.44'
- }
- repositories {
- google()
- gradlePluginPortal()
- mavenCentral()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:8.7.2'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}"
- classpath "org.jetbrains.kotlin:kotlin-serialization:${kotlinVersion}"
- classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.26'
- classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.7"
- classpath "org.jlleitschuh.gradle:ktlint-gradle:12.1.2"
- classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
- }
- configurations.configureEach {
- exclude group: 'org.jetbrains', module: 'annotations-java5' // via prism4j, already using annotations explicitly
- // check for updates every build
- resolutionStrategy.cacheChangingModulesFor 3600, 'seconds'
- }
- allprojects {
- repositories {
- google()
- mavenCentral()
- maven { url 'https://jitpack.io' }
- }
- }
- tasks.register('clean', Delete) {
- delete rootProject.buildDir
- }
|