-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
85 lines (71 loc) · 2.09 KB
/
build.gradle.kts
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.kt3k.gradle.plugin.CoverallsPluginExtension
buildscript {
repositories {
mavenCentral()
}
}
plugins {
java
kotlin("jvm") version "2.0.0"
`maven-publish`
jacoco
id("com.github.kt3k.coveralls") version "2.12.2"
id("org.jmailen.kotlinter") version "4.3.0"
}
group = "com.github.moia-dev"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
}
subprojects {
repositories {
mavenCentral()
}
apply(plugin = "java")
apply(plugin = "kotlin")
apply(plugin = "jacoco")
apply(plugin = "maven-publish")
apply(plugin = "org.jmailen.kotlinter")
tasks {
withType<KotlinCompile> {
kotlinOptions.jvmTarget = "17"
}
withType<Test> {
useJUnitPlatform()
testLogging.showStandardStreams = true
}
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
pom {
licenses {
license {
name.set("The Apache License, Version 2.0")
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
}
}
}
}
}
configure<CoverallsPluginExtension> {
sourceDirs = subprojects.flatMap { it.sourceSets["main"].allSource.srcDirs }.filter { it.exists() }.map { it.path }
jacocoReportPath = "$buildDir/reports/jacoco/report.xml"
}
val jacocoRootReport by tasks.creating(JacocoReport::class) {
description = "Generates an aggregate report from all subprojects"
group = "Coverage reports"
sourceSets(*subprojects.map { it.sourceSets["main"] }.toTypedArray())
executionData(fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec"))
reports {
xml.setDestination(File(project.buildDir, "reports/jacoco/report.xml"))
}
}