Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.43 KB

README.md

File metadata and controls

29 lines (21 loc) · 1.43 KB

Takari Maven Timeline

Maven Central Verify Reproducible Builds

How to generate a timeline for your project

To generate a timeline for your project add this to the build section of your pom.xml, or (recommended), create file .mvn/extensions.xml is project root with contents as below:

<?xml version="1.0" encoding="UTF-8"?>
<extensions>
    <extension>
        <groupId>io.takari.maven</groupId>
        <artifactId>maven-timeline</artifactId>
        <version>2.0.1</version>
  </extension>
</extensions>

Once your project has run you will have a target/timeline/timeline.html in the top-level of your project. The output will look something like the following:

Maven Timeline

Building

Build time requirement is Java 11+ and recent Maven (3.9+ recommended). Runtime Java requirement is Java 8+.