Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
- name: Run coarse performance smoke benchmark
run: |
./mvnw -B -ntp -f benchmarks/pom.xml -DskipTests \
"org.codehaus.mojo:exec-maven-plugin:3.5.0:java" \
exec:java \
"-Dexec.mainClass=com.demcha.compose.CurrentSpeedBenchmark" \
"-Dgraphcompose.benchmark.profile=smoke"

Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
- name: Run full benchmark suite
run: |
./mvnw -B -ntp -f benchmarks/pom.xml -DskipTests \
"org.codehaus.mojo:exec-maven-plugin:3.5.0:java" \
exec:java \
"-Dexec.mainClass=com.demcha.compose.CurrentSpeedBenchmark" \
"-Dgraphcompose.benchmark.profile=full" \
"-Dgraphcompose.benchmark.enforceGate=false"
Expand All @@ -212,7 +212,7 @@ jobs:
if: steps.benchmark-runs.outputs.count != '0' && steps.benchmark-runs.outputs.count != '1'
run: |
./mvnw -B -ntp -f benchmarks/pom.xml -DskipTests \
"org.codehaus.mojo:exec-maven-plugin:3.5.0:java" \
exec:java \
"-Dexec.mainClass=com.demcha.compose.BenchmarkDiffTool" \
"-Dexec.args=current-speed"

Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ follow semantic versioning; release dates are ISO 8601.
though no production code references it. Setting `<scope>test</scope>`
keeps the version pin but keeps `byte-buddy` out of consumers' runtime
classpath (`mvn dependency:tree` shows it only as `:test`).
- **CI `exec-maven-plugin` version drift removed.** The CI workflow's
three benchmark steps invoked
`org.codehaus.mojo:exec-maven-plugin:3.5.0:java` directly, while
`benchmarks/pom.xml` already declared `exec-maven-plugin` at `3.6.3`
for local runs — a silent version split between CI and local invocations
that grew the surface area to keep aligned. CI now calls the configured
plugin via `exec:java`, picking up the pinned `3.6.3` from
`benchmarks/pom.xml`. No behaviour change; one fewer hardcoded version
to bump.

## v1.6.4 — 2026-05-22

Expand Down