forked from junit-team/junit5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
31 lines (28 loc) · 1.02 KB
/
settings.gradle
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
rootProject.name = 'junit5'
include 'documentation'
include 'junit-jupiter-api'
include 'junit-jupiter-engine'
include 'junit-jupiter-migrationsupport'
include 'junit-jupiter-params'
include 'junit-platform-commons'
include 'junit-platform-commons-java-9'
include 'junit-platform-console'
include 'junit-platform-console-standalone'
include 'junit-platform-engine'
include 'junit-platform-gradle-plugin'
include 'junit-platform-launcher'
include 'junit-platform-runner'
include 'junit-platform-suite-api'
include 'junit-platform-surefire-provider'
include 'junit-vintage-engine'
include 'platform-tests'
// check that every subproject has a custom build file
// based on the project name
rootProject.children.each { project ->
project.buildFileName = "${project.name}.gradle"
assert project.buildFile.isFile()
}
// Disable Kotlin support on Java 10 or higher
// Details at https://github.com/junit-team/junit5/issues/1169
// Blocked by https://youtrack.jetbrains.com/issue/KT-21303
gradle.ext.kotlinIsSupported = Runtime.version().major() < 10