Skip to content

Commit 456a3f3

Browse files
committed
Replace Maven Timeline with Maven Profiler
1 parent f5767d4 commit 456a3f3

3 files changed

Lines changed: 9 additions & 14 deletions

File tree

.github/workflows/CI.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,8 @@ jobs:
2424
distribution: 'temurin'
2525
cache: 'maven'
2626
- name: Execute tests
27-
run: mvn verify
27+
run: mvn verify -Dmaven.profile
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/
3630
- name: Upload coverage to Codecov
3731
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-profiler</artifactId>
6+
<version>1.1.0</version>
7+
</extension>
8+
</extensions>

pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -175,13 +175,6 @@
175175
</dependencies>
176176

177177
<build>
178-
<extensions>
179-
<extension>
180-
<groupId>io.takari.maven</groupId>
181-
<artifactId>maven-timeline</artifactId>
182-
<version>2.0.4</version>
183-
</extension>
184-
</extensions>
185178
<plugins>
186179
<plugin>
187180
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)