Skip to content

Commit b4e8089

Browse files
committed
fix(plugins): Include dependencies in POM files of platform projects
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 <martin.nonnenmacher@bosch.io>
1 parent 30e362c commit b4e8089

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

plugins/package-curation-providers/build.gradle.kts

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ configure<PublishingExtension> {
3939
create<MavenPublication>(name) {
4040
groupId = "org.ossreviewtoolkit.plugins"
4141

42+
from(components["javaPlatform"])
43+
4244
pom {
4345
licenses {
4446
license {

plugins/package-managers/build.gradle.kts

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ configure<PublishingExtension> {
4141
create<MavenPublication>(name) {
4242
groupId = "org.ossreviewtoolkit.plugins"
4343

44+
from(components["javaPlatform"])
45+
4446
pom {
4547
licenses {
4648
license {

0 commit comments

Comments
 (0)