Skip to content

Commit

Permalink
fix(plugins): Include dependencies in POM files of platform projects
Browse files Browse the repository at this point in the history
Add the missing configuration to include the dependencies of the
`package-curation-providers` and `package-managers` platform projects in
the generated POM files.

Signed-off-by: Martin Nonnenmacher <[email protected]>
  • Loading branch information
mnonnenmacher committed Mar 20, 2023
1 parent 30e362c commit b4e8089
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/package-curation-providers/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ configure<PublishingExtension> {
create<MavenPublication>(name) {
groupId = "org.ossreviewtoolkit.plugins"

from(components["javaPlatform"])

pom {
licenses {
license {
Expand Down
2 changes: 2 additions & 0 deletions plugins/package-managers/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ configure<PublishingExtension> {
create<MavenPublication>(name) {
groupId = "org.ossreviewtoolkit.plugins"

from(components["javaPlatform"])

pom {
licenses {
license {
Expand Down

0 comments on commit b4e8089

Please sign in to comment.