From 7b9604ed76c016f9db48e84b9ed5c0a9efb06df8 Mon Sep 17 00:00:00 2001 From: Tobias <tobias.gabriel@sap.com> Date: Tue, 20 Jun 2023 11:40:21 +0200 Subject: [PATCH] chore(docs/maven): document how to specify project homepage in pom.xml (#22889) --- lib/modules/datasource/maven/readme.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/modules/datasource/maven/readme.md b/lib/modules/datasource/maven/readme.md index 47ad2edb1f..ff29f8a703 100644 --- a/lib/modules/datasource/maven/readme.md +++ b/lib/modules/datasource/maven/readme.md @@ -16,3 +16,14 @@ This is what allows `Renovate` to determine the `sourceUrl`, that it then uses t !!! note This also works for private repositories. It can leverage the same `token` that you had to configure in order to be able to reach the private Artifactory. + +#### Specifying your project homepage + +When opening a Pull Request `Renovate` uses the top level `url` property to determine the homepage of your project and shows it inside the Pull Request. +To customize you can set it inside your `pom.xml`. + +For example: + +```xml +<url>https://project.example.com</url> +``` -- GitLab