forked from junit-team/junit5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
69 lines (59 loc) · 1.94 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
69
plugins {
alias(libs.plugins.nohttp)
alias(libs.plugins.nexusPublish)
id("junitbuild.base-conventions")
id("junitbuild.build-metadata")
id("junitbuild.dependency-update-check")
id("junitbuild.jacoco-aggregation-conventions")
id("junitbuild.temp-maven-repo")
}
description = "JUnit 5"
val license by extra(License(
name = "Eclipse Public License v2.0",
url = uri("https://www.eclipse.org/legal/epl-v20.html"),
headerFile = layout.projectDirectory.file("gradle/config/spotless/eclipse-public-license-2.0.java")
))
val platformProjects by extra(listOf(
projects.junitPlatformCommons,
projects.junitPlatformConsole,
projects.junitPlatformConsoleStandalone,
projects.junitPlatformEngine,
projects.junitPlatformJfr,
projects.junitPlatformLauncher,
projects.junitPlatformReporting,
projects.junitPlatformRunner,
projects.junitPlatformSuite,
projects.junitPlatformSuiteApi,
projects.junitPlatformSuiteCommons,
projects.junitPlatformSuiteEngine,
projects.junitPlatformTestkit
).map { it.dependencyProject })
val jupiterProjects by extra(listOf(
projects.junitJupiter,
projects.junitJupiterApi,
projects.junitJupiterEngine,
projects.junitJupiterMigrationsupport,
projects.junitJupiterParams
).map { it.dependencyProject })
val vintageProjects by extra(listOf(
projects.junitVintageEngine.dependencyProject
))
val mavenizedProjects by extra(platformProjects + jupiterProjects + vintageProjects)
val modularProjects by extra(mavenizedProjects - listOf(projects.junitPlatformConsoleStandalone.dependencyProject))
dependencies {
(modularProjects + listOf(projects.platformTests.dependencyProject)).forEach {
jacocoAggregation(project(it.path))
}
}
nexusPublishing {
packageGroup = "org.junit"
repositories {
sonatype()
}
}
nohttp {
source.exclude("**/.gradle/**", "gradle/plugins/**/build/**", "buildSrc/build/**")
}
tasks.checkstyleNohttp {
notCompatibleWithConfigurationCache("https://github.com/spring-io/nohttp/issues/61")
}