ultrasonic-app-subsonic-and.../gradle_scripts/android-module-bootstrap.gr...

68 lines
1.4 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
2018-10-07 21:21:49 +02:00
apply plugin: 'jacoco'
apply from: "${project.rootDir}/gradle_scripts/code_quality.gradle"
android {
compileSdkVersion versions.compileSdk
defaultConfig {
2020-04-26 12:05:28 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
minSdkVersion versions.minSdk
targetSdkVersion versions.targetSdk
}
compileOptions {
// Sets Java compatibility to Java 8
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
sourceSets {
main.java.srcDirs += "${projectDir}/src/main/kotlin"
test.java.srcDirs += "${projectDir}/src/test/kotlin"
test.java.srcDirs += "${projectDir}/src/integrationTest/kotlin"
test.resources.srcDirs += "${projectDir}/src/integrationTest/resources"
}
buildTypes {
debug {
minifyEnabled false
debuggable true
}
release {
minifyEnabled false
}
}
buildFeatures {
buildConfig = false
}
}
tasks.withType(Test) {
useJUnitPlatform()
2018-10-07 21:21:49 +02:00
jacoco {
2020-08-24 13:59:40 +02:00
includeNoLocationClasses = true
2018-10-07 21:21:49 +02:00
excludes += jacocoExclude
}
}
dependencies {
api other.kotlinStdlib
testImplementation testing.junit
testRuntimeOnly testing.junitVintage
}
jacoco {
toolVersion(versions.jacoco)
}
ext {
2020-08-24 13:59:40 +02:00
jacocoExclude = ['jdk.internal.*']
}