Recommend more overrides when using starter parent

This commit is a continuation of the work done in 987a5f81. In
addition to developers and licenses that are covered in the earlier
commit, a number of other settings are still inherited from the
starter parent. This commit updates the documentation to show them
being overridden as well.

Closes gh-18532
pull/19101/head
Andy Wilkinson 5 years ago
parent 9b3d625af8
commit bd06a91ac0

@ -130,13 +130,18 @@ The following listing shows a typical `pom.xml` file:
<version>{spring-boot-version}</version>
</parent>
<!-- Override inherited license and developers -->
<!-- Override inherited settings -->
<description/>
<developers>
<developer/>
</developers>
<licenses>
<license />
</licenses>
<developers>
<developer />
</developers>
<license/>
</licenses>
<scm>
<url/>
</scm>
<url/>
<!-- Add typical dependencies for a web application -->
<dependencies>
@ -470,12 +475,17 @@ Open your favorite text editor and add the following:
<version>{spring-boot-version}</version>
</parent>
<description/>
<developers>
<developer/>
</developers>
<licenses>
<license />
</licenses>
<developers>
<developer />
</developers>
<license/>
</licenses>
<scm>
<url/>
</scm>
<url/>
<!-- Additional lines to be added here... -->

Loading…
Cancel
Save