๐Ÿ“ฆ airbnb / mavericks

๐Ÿ“„ build.gradle ยท 89 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

buildscript {
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath libs.androidGradle
        classpath libs.anvilGradle
        classpath libs.kotlinGradle
        classpath libs.hiltGradle

        // Upload with:
        // ./gradlew clean assemble uploadArchives --no-daemon --no-parallel
        classpath libs.mavenPublishGradle
        // Dokka is needed on classpath for vanniktech publish plugin
        classpath libs.dokkaGradle
    }

    configurations.all {
        resolutionStrategy {
            force "net.sf.proguard:proguard-gradle:_"
        }
    }
}

plugins {
    id("io.gitlab.arturbosch.detekt")
}

apply plugin: 'io.gitlab.arturbosch.detekt'

allprojects {
    version = VERSION_NAME
    group = GROUP

    repositories {
        google()
        mavenCentral()
    }
}

subprojects { project ->
    apply from: "$rootDir/detekt.gradle"
    
    afterEvaluate {
        tasks.withType(KotlinCompile).configureEach { task ->
            kotlinOptions {
                jvmTarget = JavaVersion.VERSION_1_8.toString()
            }
        }

        if (project.hasProperty("android")) {
            android {
                compileSdkVersion  33

                defaultConfig {
                    // Allow projects to override this.
                    if (minSdk == null) {
                        minSdk 16
                    }
                    //noinspection ExpiredTargetSdkVersion
                    targetSdk 29
                }

                lintOptions {
                    abortOnError true
                    textReport true
                    textOutput("stdout")
                    lintConfig file("${project.rootDir}/lint.xml")
                }

                compileOptions {
                    sourceCompatibility JavaVersion.VERSION_1_8
                    targetCompatibility JavaVersion.VERSION_1_8
                }

                sourceSets {
                    main.java.srcDirs += "src/main/kotlin"
                    test.java.srcDirs += "src/test/kotlin"
                }
            }
        }
    }
}

apply from: 'gradle/jacoco.gradle'