536af1f455
* [WIP] Add code coverage * Get multi-module and merging working * Add CodeCov * Update location of report.xml * Check instead of build depends on Jacoco * Do not merge coverage * Ignore tests * update comment
30 lines
830 B
Groovy
30 lines
830 B
Groovy
buildscript {
|
|
tasks.withType(JavaCompile) {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
}
|
|
|
|
group = GROUP
|
|
version = VERSION_NAME
|
|
|
|
dependencies {
|
|
implementation libraries.kotlinStdLib
|
|
implementation libraries.okio
|
|
compileOnly libraries.javax
|
|
implementation libraries.coroutinesCore
|
|
implementation project(path: ':cache')
|
|
implementation project(path: ':store')
|
|
testImplementation libraries.mockito
|
|
testImplementation libraries.mockitoKotlin
|
|
testImplementation libraries.truth
|
|
testImplementation libraries.junit
|
|
testImplementation libraries.coroutinesTest
|
|
}
|
|
|
|
apply from: rootProject.file("gradle/maven-push.gradle")
|
|
apply from: rootProject.file("gradle/jacoco.gradle")
|