-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
72 lines (61 loc) · 1.74 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
buildscript {
repositories {
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:_")
classpath("com.pinterest:ktlint:_")
classpath("com.autonomousapps:dependency-analysis-gradle-plugin:_")
classpath("org.cqfn.diktat:diktat-gradle-plugin:_")
}
}
apply(plugin = "com.autonomousapps.dependency-analysis")
val javaVersion = JavaVersion.VERSION_14
allprojects {
apply(plugin = "kotlin")
repositories {
mavenCentral()
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_14.toString()
javaParameters = true
}
}
val implementation by configurations
dependencies {
implementation(Kotlin.stdlib.jdk8)
}
apply(plugin = "org.cqfn.diktat.diktat-gradle-plugin")
configure<org.cqfn.diktat.plugin.gradle.DiktatExtension> {
diktatConfigFile = rootProject.file("diktat-analysis.yml")
inputs {
exclude("src/resources/**/*.kt")
include("src/**/*.kt")
}
}
}
apply(from = "./ci/testrules/kotlin-tests-rule.gradle")
tasks.register<GradleBuild>("codeChecks") {
tasks = listOf(
"clean",
"refreshVersionsMigrate",
"buildHealth",
"diktatFix",
"jacocoTestCoverageVerification",
"kotlinTestRule"
)
outputs
.dir(layout.buildDirectory.dir("codeChecks"))
.withPropertyName("outputDir")
}
tasks.register<GradleBuild>("buildChecks") {
tasks = listOf(
"clean",
"build"
)
outputs
.dir(layout.buildDirectory.dir("runChecks"))
.withPropertyName("outputDir")
}