@@ -43,7 +43,7 @@ builds of the next OpenJDK.
43
43
Code coverage using [ JaCoCo] for the latest build is available on [ Codecov] .
44
44
45
45
A code coverage report can also be generated locally via the [ Gradle Wrapper] by
46
- executing ` gradlew -PenableJaCoCo clean jacocoRootReport ` . The results will be available
46
+ executing ` ./ gradlew -PenableJaCoCo clean jacocoRootReport` . The results will be available
47
47
in ` build/reports/jacoco/jacocoRootReport/html/index.html ` .
48
48
49
49
## Gradle Enterprise
@@ -65,23 +65,16 @@ task outputs from previous CI builds.
65
65
You need [ JDK 17] to build JUnit 5. [ Gradle toolchains] are used to detect and
66
66
potentially download additional JDKs for compilation and test execution.
67
67
68
- All modules can be _ built_ with the [ Gradle Wrapper] using the following command.
68
+ All modules can be _ built_ and _ tested _ with the [ Gradle Wrapper] using the following command.
69
69
70
- ` gradlew clean assemble `
71
-
72
- All modules can be _ tested_ with the [ Gradle Wrapper] using the following command.
73
-
74
- ` gradlew clean test `
75
-
76
- Since Gradle has excellent incremental build support, you can usually omit executing the
77
- ` clean ` task.
70
+ ` ./gradlew build `
78
71
79
72
## Installing in Local Maven Repository
80
73
81
74
All modules can be _ installed_ with the [ Gradle Wrapper] in a local Maven repository for
82
75
consumption in other projects via the following command.
83
76
84
- ` gradlew clean publishToMavenLocal `
77
+ ` ./ gradlew publishToMavenLocal`
85
78
86
79
## Dependency Metadata
87
80
@@ -100,7 +93,7 @@ See also <https://repo1.maven.org/maven2/org/junit/> for releases and
100
93
[ Gradle Wrapper ] : https://docs.gradle.org/current/userguide/gradle_wrapper.html#sec:using_wrapper
101
94
[ JaCoCo ] : https://www.eclemma.org/jacoco/
102
95
[ Javadoc ] : https://junit.org/junit5/docs/current/api/
103
- [ JDK 17 ] : https://adoptium.net/archive.html?variant=openjdk17&jvmVariant=hotspot
96
+ [ JDK 17 ] : https://foojay.io/almanac/java-17/
104
97
[ Release Notes ] : https://junit.org/junit5/docs/current/release-notes/
105
98
[ Samples ] : https://github.com/junit-team/junit5-samples
106
99
[ StackOverflow ] : https://stackoverflow.com/questions/tagged/junit5
0 commit comments