Skip to content

Commit

Permalink
fix multi-module example
Browse files Browse the repository at this point in the history
  • Loading branch information
xvik committed Mar 12, 2024
1 parent 2afe74a commit c10c24f
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -992,12 +992,18 @@ allprojects {
group = 'com.sample'
// general pom info, required for all poms (including BOM)
maven.pom {
developers {
developer {
id = 'johnd'
name = 'John Doe'
email = 'johnd@somemail.com'
// such delay is required because java-lib (and java) plugin would be applied only
// in the subprojects section and so this would configure root project configuration
// without delay
plugins.withId('java') {
maven.pom {
developers {
developer {
id = 'johnd'
name = 'John Doe'
email = 'johnd@somemail.com'
}
}
}
}
Expand Down

0 comments on commit c10c24f

Please sign in to comment.