We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 456a3f3 commit 9dd605cCopy full SHA for 9dd605c
2 files changed
.github/workflows/CI.yml
@@ -27,5 +27,11 @@ jobs:
27
run: mvn verify -Dmaven.profile
28
- name: check license header is present in all files
29
run: mvn license:check
30
+ - name: Upload Maven Timeline
31
+ if: always()
32
+ uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
33
+ with:
34
+ name: maven-timeline-java-${{ matrix.java }}
35
+ path: target/timeline/
36
- name: Upload coverage to Codecov
37
uses: codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe # v5
.mvn/extensions.xml
@@ -5,4 +5,9 @@
5
<artifactId>maven-profiler</artifactId>
6
<version>1.1.0</version>
7
</extension>
8
+ <extension>
9
+ <groupId>io.takari.maven</groupId>
10
+ <artifactId>maven-timeline</artifactId>
11
+ <version>2.0.4</version>
12
+ </extension>
13
</extensions>
0 commit comments