Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ link:{junit-framework-repo}+/milestone/101?closed=1+[5.13.4] milestone page in t
repository on GitHub.


[[release-notes-5.13.4-overall-improvements]]
=== Overall Changes

[[release-notes-5.13.4-overall-new-features-and-improvements]]
==== New Features and Improvements

* Remove `java.*` packages from `Import-Package` headers in all jar manifests to maximize
compatibility with older OSGi runtimes.


[[release-notes-5.13.4-junit-platform]]
=== JUnit Platform

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ tasks.withType<Jar>().named {
# Instruct the APIGuardianAnnotations how to operate.
# See https://bnd.bndtools.org/instructions/export-apiguardian.html
-export-apiguardian: *;version=${'$'}{versionmask;===;${'$'}{version_cleanup;${'$'}{task.archiveVersion}}}

# Avoid including java packages in Import-Package header to maximize compatibility with older OSGi runtimes.
# See https://bnd.bndtools.org/instructions/noimportjava.html
# Issue: https://github.com/junit-team/junit-framework/issues/4733
-noimportjava: true
"""
)

Expand Down