File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
documentation/src/docs/asciidoc/release-notes
gradle/plugins/common/src/main/kotlin Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,16 @@ link:{junit-framework-repo}+/milestone/101?closed=1+[5.13.4] milestone page in t
10
10
repository on GitHub.
11
11
12
12
13
+ [[release-notes-5.13.4-overall-improvements]]
14
+ === Overall Changes
15
+
16
+ [[release-notes-5.13.4-overall-new-features-and-improvements]]
17
+ ==== New Features and Improvements
18
+
19
+ * Remove `java.*` packages from `Import-Package` headers in all jar manifests to maximize
20
+ compatibility with older OSGi runtimes.
21
+
22
+
13
23
[[release-notes-5.13.4-junit-platform]]
14
24
=== JUnit Platform
15
25
Original file line number Diff line number Diff line change @@ -67,6 +67,11 @@ tasks.withType<Jar>().named {
67
67
# Instruct the APIGuardianAnnotations how to operate.
68
68
# See https://bnd.bndtools.org/instructions/export-apiguardian.html
69
69
-export-apiguardian: *;version=${' $' } {versionmask;===;${' $' } {version_cleanup;${' $' } {task.archiveVersion}}}
70
+
71
+ # Avoid including java packages in Import-Package header to maximize compatibility with older OSGi runtimes.
72
+ # See https://bnd.bndtools.org/instructions/noimportjava.html
73
+ # Issue: https://github.com/junit-team/junit-framework/issues/4733
74
+ -noimportjava: true
70
75
"""
71
76
)
72
77
You can’t perform that action at this time.
0 commit comments