Skip to content

Commit 8ab84a0

Browse files
Merge maintenance/mps20241 into merge/mps20241
2 parents 331cf23 + 2154388 commit 8ab84a0

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project are documented in this file.
55
Format of the log is _loosely_ based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
The project does _not_ follow Semantic Versioning and the changes are documented in reverse chronological order, grouped by calendar month.
77

8+
## June 2025
9+
10+
### Changed
11+
12+
- Published SBOM contains dependencies only from runtime configurations
13+
814
## May 2025
915

1016
### Changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -576,4 +576,8 @@ cyclonedxBom {
576576
outputFormat = "json"
577577
// Don't include license texts in generated SBOMs
578578
includeLicenseText = false
579+
// Include runtime only deps (bundled libs, language libs, mps)
580+
def runtimeConfigs = bundledDeps.collect {it.configName }
581+
runtimeConfigs.addAll([configurations.mps.name, configurations.languageLibs.name])
582+
includeConfigs = runtimeConfigs
579583
}

0 commit comments

Comments
 (0)