-
Notifications
You must be signed in to change notification settings - Fork 38
SQL-2737: Add thirdparty notices as artifacts #347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQL-2737: Add thirdparty notices as artifacts #347
Conversation
… standalone task to validate it works
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Nice work figuring out how to generate the dependencies 🔥
resources/third_party_header.txt
Outdated
@@ -0,0 +1,13 @@ | |||
MongoDB uses third-party libraries or other resources that may | |||
be distributed under licenses different than the MongoDB software. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
be distributed under licenses different than the MongoDB software. | |
be distributed under licenses different from the MongoDB software. |
resources/third_party_header.txt
Outdated
MongoDB uses third-party libraries or other resources that may | ||
be distributed under licenses different than the MongoDB software. | ||
|
||
In the event that we accidentally failed to list a required notice, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the event that we accidentally failed to list a required notice, | |
In the event that we accidentally fail to list a required notice, |
gradle/publish.gradle
Outdated
dependencyNode.appendNode('groupId', artifact.moduleVersion.id.group) | ||
dependencyNode.appendNode('artifactId', artifact.name) | ||
dependencyNode.appendNode('version', artifact.moduleVersion.id.version) | ||
dependencyNode.appendNode('scope', 'runtime') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I see in our previous release dependencies that mongodb-driver-sync
has a scope of compile
. Here it will be runtime
, to be consistent we can set that to compile.
* Add thirdparty notices as artifacts * Generating thirparty license notices at publication time and adding a standalone task to validate it works * Publish pom with fixed version to be consumable downstream * Adding missing new line at the end of the file * Only list first level runtime dependencies * Fix thirdparty license notice header typos
No description provided.