forked from testng-team/testng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
41 lines (35 loc) · 917 Bytes
/
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
pluginManagement {
includeBuild("build-logic")
}
rootProject.name = "testng-root"
plugins {
`gradle-enterprise`
id("de.fayard.refreshVersions") version "0.30.1"
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
// Sorted by name
include(":testng")
include(":testng-ant")
include(":testng-api")
include(":testng-asserts")
include(":testng-bom")
include(":testng-collections")
include(":testng-core")
include(":testng-core-api")
include(":testng-reflection-utils")
include(":testng-runner-api")
include(":testng-runner-junit4")
include(":testng-test-kit")
include(":testng-test-osgi")
enableFeaturePreview("VERSION_CATALOGS")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
for (project in rootProject.children) {
project.apply {
buildFileName = "${project.name}-build.gradle.kts"
}
}