Skip to content

Commit 73adb70

Browse files
dfa1claude
andcommitted
perf: skip shade fat-jar by default, enable only for ./bench
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 94c2e13 commit 73adb70

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

bench

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
3-
./mvnw package -DskipTests
3+
./mvnw package -DskipTests -DskipShade=false
44
java \
55
--add-opens java.base/java.nio=ALL-UNNAMED \
66
--enable-native-access=ALL-UNNAMED \

performance/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<properties>
1616
<maven.deploy.skip>true</maven.deploy.skip>
1717
<skipPublishing>true</skipPublishing>
18+
<skipShade>true</skipShade>
1819
</properties>
1920

2021
<dependencies>
@@ -101,6 +102,7 @@
101102
<goal>shade</goal>
102103
</goals>
103104
<configuration>
105+
<skip>${skipShade}</skip>
104106
<finalName>benchmarks</finalName>
105107
<transformers>
106108
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">

0 commit comments

Comments
 (0)