Migrate from FOSSA to SRS configuration#2685
Open
skammari-splunk wants to merge 1 commit intosignalfx:mainfrom
Open
Migrate from FOSSA to SRS configuration#2685skammari-splunk wants to merge 1 commit intosignalfx:mainfrom
skammari-splunk wants to merge 1 commit intosignalfx:mainfrom
Conversation
breedx-splk
approved these changes
Mar 9, 2026
Contributor
breedx-splk
left a comment
There was a problem hiding this comment.
Do you want to remove the fossa yaml as part of this PR? Should that go away as well?
I'm curious to see what this looks like and if it will impact our workflow.
laurit
reviewed
Mar 9, 2026
| # - experimental.gradle.configurations-only: ['runtimeClasspath', 'runtime', 'runtimeOnly', 'runtimeOnlyDependenciesMetadata'] | ||
| # FOSSA was configured to scan only Gradle configurations: ['runtimeClasspath', 'runtime', 'runtimeOnly', 'runtimeOnlyDependenciesMetadata'] | ||
| # SRS does not support Gradle configuration filtering. | ||
| # Only 'compileClasspath', 'runtimeClasspath' configurations will be scanned. |
Collaborator
There was a problem hiding this comment.
Scanning compileClasspath may result in false positives e.g. license report may include libraries that aren't really bundled with the agent, same for vulnerabilities. If this turns out to be an issue how can we work around it?
laurit
reviewed
Mar 19, 2026
Comment on lines
+1
to
+12
| # SRS configuration file | ||
| # Generated from .fossa.yml | ||
| # | ||
| # WARNING: The following FOSSA features are NOT supported in SRS | ||
| # (only skip-files and skip-dirs are supported for now): | ||
| # | ||
| # - experimental.gradle.configurations-only: ['runtimeClasspath', 'runtime', 'runtimeOnly', 'runtimeOnlyDependenciesMetadata'] | ||
| # FOSSA was configured to scan only Gradle configurations: ['runtimeClasspath', 'runtime', 'runtimeOnly', 'runtimeOnlyDependenciesMetadata'] | ||
| # SRS does not support Gradle configuration filtering. | ||
| # Only 'compileClasspath', 'runtimeClasspath' configurations will be scanned. | ||
| # | ||
|
|
Collaborator
There was a problem hiding this comment.
Suggested change
| # SRS configuration file | |
| # Generated from .fossa.yml | |
| # | |
| # WARNING: The following FOSSA features are NOT supported in SRS | |
| # (only skip-files and skip-dirs are supported for now): | |
| # | |
| # - experimental.gradle.configurations-only: ['runtimeClasspath', 'runtime', 'runtimeOnly', 'runtimeOnlyDependenciesMetadata'] | |
| # FOSSA was configured to scan only Gradle configurations: ['runtimeClasspath', 'runtime', 'runtimeOnly', 'runtimeOnlyDependenciesMetadata'] | |
| # SRS does not support Gradle configuration filtering. | |
| # Only 'compileClasspath', 'runtimeClasspath' configurations will be scanned. | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a srs.yaml configuration file generated from the existing .fossa.yml configuration.
What Changed
Added srs.yaml with settings migrated from .fossa.yml
Mapped FOSSA paths.exclude to SRS skip-dirs
Mapped FOSSA targets.exclude (type + path) to SRS skip-files
Next Steps