Skip to content

Commit d6d8420

Browse files
committed
Add Maven Timeline plugin and upload artifact in CI
1 parent 8b47c14 commit d6d8420

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/CI.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,11 @@ jobs:
2727
run: mvn verify
2828
- name: check license header is present in all files
2929
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/
3036
- name: Upload coverage to Codecov
3137
uses: codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe # v5

.mvn/extensions.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<extensions>
3+
<extension>
4+
<groupId>io.takari.maven</groupId>
5+
<artifactId>maven-timeline</artifactId>
6+
<version>2.0.4</version>
7+
</extension>
8+
</extensions>

0 commit comments

Comments
 (0)