Skip to content

Commit fee2442

Browse files
committed
feat: add developers section to published POM metadata
1 parent 228e45f commit fee2442

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,19 @@ javadoc {
5656
test {
5757
useJUnitPlatform()
5858
}
59+
60+
publishing {
61+
publications {
62+
withType(MavenPublication) {
63+
pom {
64+
developers {
65+
developer {
66+
name = 'Reqstool Contributors'
67+
organization = 'reqstool'
68+
organizationUrl = 'https://github.com/reqstool'
69+
}
70+
}
71+
}
72+
}
73+
}
74+
}

0 commit comments

Comments
 (0)