-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
68 lines (58 loc) · 1.36 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
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("java")
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.spotless)
alias(libs.plugins.ktlint)
alias(libs.plugins.benchmark)
alias(libs.plugins.allopen)
}
group = "com.giwankim"
version = "0.0.1-SNAPSHOT"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(libs.versions.java.get())
}
}
allOpen {
annotation("org.openjdk.jmh.annotations.State")
}
repositories {
mavenCentral()
}
dependencies {
implementation(libs.benchmark)
testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
testImplementation(platform(libs.assertj.bom))
testImplementation(libs.assertj.core)
testImplementation(libs.kotest)
testImplementation(libs.kotest.datatest)
}
tasks.withType<KotlinCompile>().configureEach {
compilerOptions {
jvmTarget.set(JvmTarget.valueOf("JVM_" + libs.versions.java.get()))
freeCompilerArgs.add("-Xjsr305=strict")
}
}
tasks {
test {
useJUnitPlatform()
}
ktlint {
verbose.set(true)
}
}
benchmark {
targets {
register("main")
}
}
spotless {
java {
removeUnusedImports()
googleJavaFormat().reflowLongStrings().reorderImports(true)
formatAnnotations()
}
}