blob: 16cb7ebc654c5672167e3c9279b79ffc721f5e43 (
plain)
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
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
/**
* Base configuration for Java/JVM projects.
*/
plugins {
id("dokkabuild.base")
java
}
java {
toolchain {
languageVersion.set(dokkaBuild.mainJavaVersion)
}
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
maxParallelForks = if (System.getenv("GITHUB_ACTIONS") != null) {
Runtime.getRuntime().availableProcessors()
} else {
(Runtime.getRuntime().availableProcessors() / 2).takeIf { it > 0 } ?: 1
}
javaLauncher.set(javaToolchains.launcherFor {
languageVersion.set(dokkaBuild.testJavaLauncherVersion)
})
}
dependencies {
testImplementation(platform(libs.junit.bom))
}
tasks.processResources {
duplicatesStrategy = DuplicatesStrategy.FAIL
}
|