Skip to content

Maven Datasource

Table of values

Name Value Notes
Identifier maven
Default versioning maven
Custom registry support Yes
Release timestamp support Yes The release timestamp is determined from the Last-Modified header or the lastModified field in the results.
Source URL support Yes The source URL is determined from the scm tags in the results.

Description

Making your changelogs fetchable

In case you are publishing artifacts and you want to ensure that your changelogs are fetchable by Renovate, you need to configure the scm section on their pom.xml file.

For example:

<scm>
    <url>scm:git:https://github.com/path_to_repository</url>
</scm>

This is what allows Renovate to determine the sourceUrl, that it then uses to fetch the changelogs.

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:

<url>https://project.example.com</url>

Open items

The below list of features were current when this page was generated on July 27, 2024.

Feature requests

  • Support constraintsFiltering=strict for maven #25961
  • Add ability to specify AWS credentials in hostRules block for private Maven repos hosted directly on S3 #18745