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 @@ -65,6 +65,11 @@ tasks.withType<Jar>().named {
65
65
# Instruct the APIGuardianAnnotations how to operate.
66
66
# See https://bnd.bndtools.org/instructions/export-apiguardian.html
67
67
-export-apiguardian: *;version=${' $' } {versionmask;===;${' $' } {version_cleanup;${' $' } {task.archiveVersion}}}
68
+
69
+ # Avoid including java packages in Import-Package header to maximize compatibility with older OSGi runtimes.
70
+ # See https://bnd.bndtools.org/instructions/noimportjava.html
71
+ # Issue: https://github.com/junit-team/junit-framework/issues/4733
72
+ -noimportjava: true
68
73
"""
69
74
)
70
75
You can’t perform that action at this time.
0 commit comments