forked from junit-team/junit5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
65 lines (59 loc) · 1.89 KB
/
settings.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
pluginManagement {
plugins {
id("com.gradle.enterprise") version "3.1"
id("net.nemerosa.versioning") version "2.10.0"
id("com.github.ben-manes.versions") version "0.27.0"
id("com.diffplug.gradle.spotless") version "3.27.0"
id("org.ajoberstar.git-publish") version "2.1.3"
kotlin("jvm") version "1.3.61"
id("com.github.johnrengelman.shadow") version "5.2.0"
id("org.asciidoctor.jvm.convert") version "2.4.0"
id("org.asciidoctor.jvm.pdf") version "2.4.0"
id("me.champeau.gradle.jmh") version "0.5.0"
id("io.spring.nohttp") version "0.0.4.RELEASE"
}
}
plugins {
id("com.gradle.enterprise")
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
val javaVersion = JavaVersion.current()
require(javaVersion.isJava11Compatible) {
"The JUnit 5 build requires Java 11 or higher. Currently executing with Java ${javaVersion.majorVersion}."
}
rootProject.name = "junit5"
include("documentation")
include("junit-jupiter")
include("junit-jupiter-api")
include("junit-jupiter-engine")
include("junit-jupiter-migrationsupport")
include("junit-jupiter-params")
include("junit-platform-commons")
include("junit-platform-console")
include("junit-platform-console-standalone")
include("junit-platform-engine")
include("junit-platform-launcher")
include("junit-platform-reporting")
include("junit-platform-runner")
include("junit-platform-suite-api")
include("junit-platform-testkit")
include("junit-vintage-engine")
include("platform-tests")
include("platform-tooling-support-tests")
include("junit-bom")
// check that every subproject has a custom build file
// based on the project name
rootProject.children.forEach { project ->
project.buildFileName = "${project.name}.gradle"
if (!project.buildFile.isFile) {
project.buildFileName = "${project.name}.gradle.kts"
}
require(project.buildFile.isFile) {
"${project.buildFile} must exist"
}
}