Skip to content

Log Gradle agent output directory - #937

Merged
jormundur00 merged 3 commits into
graalvm:masterfrom
jormundur00:rhei-agent-output-log/issue-443
Jul 16, 2026
Merged

Log Gradle agent output directory#937
jormundur00 merged 3 commits into
graalvm:masterfrom
jormundur00:rhei-agent-output-log/issue-443

Conversation

@jormundur00

@jormundur00 jormundur00 commented Jun 17, 2026

Copy link
Copy Markdown
Member

Fixes #443

What changed

This PR makes Gradle agent runs print the agent output directory in normal build output.

Before this change, users had to know the default output layout or inspect the filesystem to find the generated tracing-agent metadata.

After this change, the build tells you exactly where the metadata was written.

Why

Users can immediately find generated tracing-agent metadata without turning on extra logging or guessing the output path.

Example

Before:

[native-image-plugin] Instrumenting task with the native-image-agent: test

After:

[native-image-plugin] Instrumenting task with the native-image-agent: test. Agent output: build/native/agent-output/test

The same applies to run, where the output now points at build/native/agent-output/run.

Implementation summary

  • Document the new visible agent-output message in the Gradle tracing-agent docs.
  • Extend the plugin log line for instrumented tasks so it prints the resolved agent output directory.
  • Add regression coverage for both test and run agent flows.

Validation

  • grund fmt . --marker --check: passed.
  • git diff --check: passed.
  • JAVA_HOME=/home/jovan/.mx/jdks/labsjdk-ee-17-jvmci-23.1-b02 ./gradlew :native-gradle-plugin:test :native-gradle-plugin:inspections: passed.
  • JAVA_HOME=/home/jovan/.sdkman/candidates/java/17.0.12-graal ./gradlew :native-gradle-plugin:functionalTest --tests 'org.graalvm.buildtools.gradle.JavaApplicationWithAgentFunctionalTest.agent is passed*' --tests 'org.graalvm.buildtools.gradle.JavaApplicationWithAgentFunctionalTest.agent instruments run task*': passed.

The focused functional run emitted the expected destination-directory messages for both touched scenarios:

[native-image-plugin] Instrumenting task with the native-image-agent: test. Agent output: /tmp/.../build/native/agent-output/test
[native-image-plugin] Instrumenting task with the native-image-agent: run. Agent output: /tmp/.../build/native/agent-output/run

@oracle-contributor-agreement oracle-contributor-agreement Bot added the OCA Verified All contributors have signed the Oracle Contributor Agreement. label Jun 17, 2026
@jormundur00
jormundur00 force-pushed the rhei-agent-output-log/issue-443 branch 2 times, most recently from ae320fd to 917b7da Compare June 18, 2026 14:10
@jormundur00
jormundur00 marked this pull request as ready for review July 2, 2026 10:48
@jormundur00
jormundur00 force-pushed the rhei-agent-output-log/issue-443 branch from 917b7da to 1407cd5 Compare July 2, 2026 11:47
@jormundur00
jormundur00 force-pushed the rhei-agent-output-log/issue-443 branch from 1407cd5 to 702c69d Compare July 15, 2026 12:10

Agent output must be written under `build/native/agent-output/<taskName>` unless users configure a
direct mode output location. Generated output must be suitable for later merge and copy steps.
direct mode output location. When a task is instrumented, the Gradle task output must report the

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this equivalent to maven?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was not equivalent on the Maven side. Thanks for pointing that out — I added Maven parity in 967961d. Maven now reports the managed agent output directory at normal log level for both test and application executions, with corresponding spec and functional-test coverage.

vjovanov
vjovanov previously approved these changes Jul 16, 2026
@jormundur00
jormundur00 force-pushed the rhei-agent-output-log/issue-443 branch from 967961d to 1879878 Compare July 16, 2026 12:35
@jormundur00
jormundur00 force-pushed the rhei-agent-output-log/issue-443 branch from 1879878 to 576171f Compare July 16, 2026 13:00
@jormundur00
jormundur00 merged commit dbcfe25 into graalvm:master Jul 16, 2026
50 checks passed
mergify Bot added a commit to robfrank/linklift that referenced this pull request Jul 27, 2026
….4 to 1.1.6 [skip ci]

Bumps [org.graalvm.buildtools:native-maven-plugin](https://github.com/graalvm/native-build-tools) from 1.1.4 to 1.1.6.
Release notes

*Sourced from [org.graalvm.buildtools:native-maven-plugin's releases](https://github.com/graalvm/native-build-tools/releases).*

> 1.1.6
> -----
>
> What's Changed
> --------------
>
> * Prefer GraalVM's Java when running with agent by [`@​vjovanov`](https://github.com/vjovanov) in [graalvm/native-build-tools#833](https://redirect.github.com/graalvm/native-build-tools/pull/833)
> * Make Maven agent execution ID configurable by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#933](https://redirect.github.com/graalvm/native-build-tools/pull/933)
> * Fix optional JUnit dependency resolution in Maven native tests by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#935](https://redirect.github.com/graalvm/native-build-tools/pull/935)
> * Log selected Maven metadata repository by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#936](https://redirect.github.com/graalvm/native-build-tools/pull/936)
> * Fix Maven test agent paths with spaces by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#934](https://redirect.github.com/graalvm/native-build-tools/pull/934)
> * Log Gradle agent output directory by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#937](https://redirect.github.com/graalvm/native-build-tools/pull/937)
> * Clarify JUnit launcher alignment for Maven native tests by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#938](https://redirect.github.com/graalvm/native-build-tools/pull/938)
> * Fix custom Gradle binary classpath wiring by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#939](https://redirect.github.com/graalvm/native-build-tools/pull/939)
> * Document Maven native test output directories by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#941](https://redirect.github.com/graalvm/native-build-tools/pull/941)
> * Fix Gradle agent toolchain detection by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#943](https://redirect.github.com/graalvm/native-build-tools/pull/943)
> * Fix Gradle metadata repository service scoping by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#942](https://redirect.github.com/graalvm/native-build-tools/pull/942)
> * Release 1.1.5 by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#972](https://redirect.github.com/graalvm/native-build-tools/pull/972)
> * Fix Groovy agent predicate closures by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#959](https://redirect.github.com/graalvm/native-build-tools/pull/959)
> * Make Maven skip apply to all goals by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#960](https://redirect.github.com/graalvm/native-build-tools/pull/960)
> * Document Maven resource configuration by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#965](https://redirect.github.com/graalvm/native-build-tools/pull/965)
> * Fix layered image configuration cache test by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#958](https://redirect.github.com/graalvm/native-build-tools/pull/958)
> * Respect build-tool console colors for Native Image output by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#961](https://redirect.github.com/graalvm/native-build-tools/pull/961)
> * Normalize platform-dependent resource and test paths by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#981](https://redirect.github.com/graalvm/native-build-tools/pull/981)
> * Bump version to 1.1.6-SNAPSHOT by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#990](https://redirect.github.com/graalvm/native-build-tools/pull/990)
> * Add class introduced in 6.1 by [`@​marcphilipp`](https://github.com/marcphilipp) in [graalvm/native-build-tools#867](https://redirect.github.com/graalvm/native-build-tools/pull/867)
> * Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.18.0 in /samples/java-application-with-tests by [`@​dependabot`](https://github.com/dependabot)[bot] in [graalvm/native-build-tools#823](https://redirect.github.com/graalvm/native-build-tools/pull/823)
> * Fix order of access filter files by moving default to the start by [`@​ArloL`](https://github.com/ArloL) in [graalvm/native-build-tools#875](https://redirect.github.com/graalvm/native-build-tools/pull/875)
> * Allow the test classes directory to be configured for the NativeTestMojo by [`@​thegridman`](https://github.com/thegridman) in [graalvm/native-build-tools#757](https://redirect.github.com/graalvm/native-build-tools/pull/757)
> * Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.18.0 in /samples/java-application-with-tests-in-src-main by [`@​dependabot`](https://github.com/dependabot)[bot] in [graalvm/native-build-tools#993](https://redirect.github.com/graalvm/native-build-tools/pull/993)
> * Preserve test runner argLine when configuring agent by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#992](https://redirect.github.com/graalvm/native-build-tools/pull/992)
> * Update reachability metadata to 1.0.7 by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#995](https://redirect.github.com/graalvm/native-build-tools/pull/995)
>
> New Contributors
> ----------------
>
> * [`@​ArloL`](https://github.com/ArloL) made their first contribution in [graalvm/native-build-tools#875](https://redirect.github.com/graalvm/native-build-tools/pull/875)
> * [`@​thegridman`](https://github.com/thegridman) made their first contribution in [graalvm/native-build-tools#757](https://redirect.github.com/graalvm/native-build-tools/pull/757)
>
> **Full Changelog**: <graalvm/native-build-tools@1.1.5...1.1.6>
>
> 1.1.5
> -----
>
> What's Changed
> --------------
>
> * Release 1.1.4 by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#963](https://redirect.github.com/graalvm/native-build-tools/pull/963)
> * Bump version to 1.1.5-SNAPSHOT by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#964](https://redirect.github.com/graalvm/native-build-tools/pull/964)
> * Fix Maven native test resource handling by [`@​alvarosanchez`](https://github.com/alvarosanchez) in [graalvm/native-build-tools#966](https://redirect.github.com/graalvm/native-build-tools/pull/966)
> * Support autodetected Jupiter extensions in native tests by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#919](https://redirect.github.com/graalvm/native-build-tools/pull/919)
> * Document Gradle tracing agent default mode by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#922](https://redirect.github.com/graalvm/native-build-tools/pull/922)
> * Fix Gradle nativeTest test resource detection by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#929](https://redirect.github.com/graalvm/native-build-tools/pull/929)
> * Document skipNativeBuildForPom for Maven aggregators by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#921](https://redirect.github.com/graalvm/native-build-tools/pull/921)
> * Fix custom native test classpath wiring by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#925](https://redirect.github.com/graalvm/native-build-tools/pull/925)
> * Make build infrastructure runnable on newer JDKs by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#928](https://redirect.github.com/graalvm/native-build-tools/pull/928)
> * Clarify buildArgs option entries by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#931](https://redirect.github.com/graalvm/native-build-tools/pull/931)
> * Update reachability metadata to 1.0.6 by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#971](https://redirect.github.com/graalvm/native-build-tools/pull/971)

... (truncated)


Commits

* [`7a6414c`](graalvm/native-build-tools@7a6414c) Release 1.1.6
* [`e95114f`](graalvm/native-build-tools@e95114f) Merge pull request [#995](https://redirect.github.com/graalvm/native-build-tools/issues/995) from graalvm/update-metadata-to-1.0.7
* [`b22ad4c`](graalvm/native-build-tools@b22ad4c) Update reachability metadata to 1.0.7
* [`bdcffba`](graalvm/native-build-tools@bdcffba) Preserve test runner argLine when configuring agent ([#992](https://redirect.github.com/graalvm/native-build-tools/issues/992))
* [`f817689`](graalvm/native-build-tools@f817689) Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.18.0 in /samples/java-...
* [`4e52742`](graalvm/native-build-tools@4e52742) Allow the test classes directory to be configured for the NativeTestMojo ([#757](https://redirect.github.com/graalvm/native-build-tools/issues/757))
* [`2491c2c`](graalvm/native-build-tools@2491c2c) Fix order of access filter files by moving default to the start ([#875](https://redirect.github.com/graalvm/native-build-tools/issues/875))
* [`dd2072b`](graalvm/native-build-tools@dd2072b) Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.18.0 in /samples/java-...
* [`e10adf0`](graalvm/native-build-tools@e10adf0) Add class introduced in 6.1
* [`53a3319`](graalvm/native-build-tools@53a3319) Bump version to 1.1.6-SNAPSHOT ([#990](https://redirect.github.com/graalvm/native-build-tools/issues/990))
* Additional commits viewable in [compare view](graalvm/native-build-tools@1.1.4...1.1.6)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=org.graalvm.buildtools:native-maven-plugin&package-manager=maven&previous-version=1.1.4&new-version=1.1.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
mergify Bot added a commit to ArcadeData/arcadedb that referenced this pull request Jul 29, 2026
…0.6 to 1.1.6 [skip ci]

Bumps [org.graalvm.buildtools:native-maven-plugin](https://github.com/graalvm/native-build-tools) from 0.10.6 to 1.1.6.
Release notes

*Sourced from [org.graalvm.buildtools:native-maven-plugin's releases](https://github.com/graalvm/native-build-tools/releases).*

> 1.1.6
> -----
>
> What's Changed
> --------------
>
> * Prefer GraalVM's Java when running with agent by [`@​vjovanov`](https://github.com/vjovanov) in [graalvm/native-build-tools#833](https://redirect.github.com/graalvm/native-build-tools/pull/833)
> * Make Maven agent execution ID configurable by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#933](https://redirect.github.com/graalvm/native-build-tools/pull/933)
> * Fix optional JUnit dependency resolution in Maven native tests by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#935](https://redirect.github.com/graalvm/native-build-tools/pull/935)
> * Log selected Maven metadata repository by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#936](https://redirect.github.com/graalvm/native-build-tools/pull/936)
> * Fix Maven test agent paths with spaces by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#934](https://redirect.github.com/graalvm/native-build-tools/pull/934)
> * Log Gradle agent output directory by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#937](https://redirect.github.com/graalvm/native-build-tools/pull/937)
> * Clarify JUnit launcher alignment for Maven native tests by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#938](https://redirect.github.com/graalvm/native-build-tools/pull/938)
> * Fix custom Gradle binary classpath wiring by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#939](https://redirect.github.com/graalvm/native-build-tools/pull/939)
> * Document Maven native test output directories by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#941](https://redirect.github.com/graalvm/native-build-tools/pull/941)
> * Fix Gradle agent toolchain detection by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#943](https://redirect.github.com/graalvm/native-build-tools/pull/943)
> * Fix Gradle metadata repository service scoping by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#942](https://redirect.github.com/graalvm/native-build-tools/pull/942)
> * Release 1.1.5 by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#972](https://redirect.github.com/graalvm/native-build-tools/pull/972)
> * Fix Groovy agent predicate closures by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#959](https://redirect.github.com/graalvm/native-build-tools/pull/959)
> * Make Maven skip apply to all goals by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#960](https://redirect.github.com/graalvm/native-build-tools/pull/960)
> * Document Maven resource configuration by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#965](https://redirect.github.com/graalvm/native-build-tools/pull/965)
> * Fix layered image configuration cache test by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#958](https://redirect.github.com/graalvm/native-build-tools/pull/958)
> * Respect build-tool console colors for Native Image output by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#961](https://redirect.github.com/graalvm/native-build-tools/pull/961)
> * Normalize platform-dependent resource and test paths by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#981](https://redirect.github.com/graalvm/native-build-tools/pull/981)
> * Bump version to 1.1.6-SNAPSHOT by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#990](https://redirect.github.com/graalvm/native-build-tools/pull/990)
> * Add class introduced in 6.1 by [`@​marcphilipp`](https://github.com/marcphilipp) in [graalvm/native-build-tools#867](https://redirect.github.com/graalvm/native-build-tools/pull/867)
> * Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.18.0 in /samples/java-application-with-tests by [`@​dependabot`](https://github.com/dependabot)[bot] in [graalvm/native-build-tools#823](https://redirect.github.com/graalvm/native-build-tools/pull/823)
> * Fix order of access filter files by moving default to the start by [`@​ArloL`](https://github.com/ArloL) in [graalvm/native-build-tools#875](https://redirect.github.com/graalvm/native-build-tools/pull/875)
> * Allow the test classes directory to be configured for the NativeTestMojo by [`@​thegridman`](https://github.com/thegridman) in [graalvm/native-build-tools#757](https://redirect.github.com/graalvm/native-build-tools/pull/757)
> * Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.18.0 in /samples/java-application-with-tests-in-src-main by [`@​dependabot`](https://github.com/dependabot)[bot] in [graalvm/native-build-tools#993](https://redirect.github.com/graalvm/native-build-tools/pull/993)
> * Preserve test runner argLine when configuring agent by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#992](https://redirect.github.com/graalvm/native-build-tools/pull/992)
> * Update reachability metadata to 1.0.7 by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#995](https://redirect.github.com/graalvm/native-build-tools/pull/995)
>
> New Contributors
> ----------------
>
> * [`@​ArloL`](https://github.com/ArloL) made their first contribution in [graalvm/native-build-tools#875](https://redirect.github.com/graalvm/native-build-tools/pull/875)
> * [`@​thegridman`](https://github.com/thegridman) made their first contribution in [graalvm/native-build-tools#757](https://redirect.github.com/graalvm/native-build-tools/pull/757)
>
> **Full Changelog**: <graalvm/native-build-tools@1.1.5...1.1.6>
>
> 1.1.5
> -----
>
> What's Changed
> --------------
>
> * Release 1.1.4 by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#963](https://redirect.github.com/graalvm/native-build-tools/pull/963)
> * Bump version to 1.1.5-SNAPSHOT by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#964](https://redirect.github.com/graalvm/native-build-tools/pull/964)
> * Fix Maven native test resource handling by [`@​alvarosanchez`](https://github.com/alvarosanchez) in [graalvm/native-build-tools#966](https://redirect.github.com/graalvm/native-build-tools/pull/966)
> * Support autodetected Jupiter extensions in native tests by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#919](https://redirect.github.com/graalvm/native-build-tools/pull/919)
> * Document Gradle tracing agent default mode by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#922](https://redirect.github.com/graalvm/native-build-tools/pull/922)
> * Fix Gradle nativeTest test resource detection by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#929](https://redirect.github.com/graalvm/native-build-tools/pull/929)
> * Document skipNativeBuildForPom for Maven aggregators by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#921](https://redirect.github.com/graalvm/native-build-tools/pull/921)
> * Fix custom native test classpath wiring by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#925](https://redirect.github.com/graalvm/native-build-tools/pull/925)
> * Make build infrastructure runnable on newer JDKs by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#928](https://redirect.github.com/graalvm/native-build-tools/pull/928)
> * Clarify buildArgs option entries by [`@​jormundur00`](https://github.com/jormundur00) in [graalvm/native-build-tools#931](https://redirect.github.com/graalvm/native-build-tools/pull/931)
> * Update reachability metadata to 1.0.6 by [`@​graalvmbot`](https://github.com/graalvmbot) in [graalvm/native-build-tools#971](https://redirect.github.com/graalvm/native-build-tools/pull/971)

... (truncated)


Commits

* [`7a6414c`](graalvm/native-build-tools@7a6414c) Release 1.1.6
* [`e95114f`](graalvm/native-build-tools@e95114f) Merge pull request [#995](https://redirect.github.com/graalvm/native-build-tools/issues/995) from graalvm/update-metadata-to-1.0.7
* [`b22ad4c`](graalvm/native-build-tools@b22ad4c) Update reachability metadata to 1.0.7
* [`bdcffba`](graalvm/native-build-tools@bdcffba) Preserve test runner argLine when configuring agent ([#992](https://redirect.github.com/graalvm/native-build-tools/issues/992))
* [`f817689`](graalvm/native-build-tools@f817689) Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.18.0 in /samples/java-...
* [`4e52742`](graalvm/native-build-tools@4e52742) Allow the test classes directory to be configured for the NativeTestMojo ([#757](https://redirect.github.com/graalvm/native-build-tools/issues/757))
* [`2491c2c`](graalvm/native-build-tools@2491c2c) Fix order of access filter files by moving default to the start ([#875](https://redirect.github.com/graalvm/native-build-tools/issues/875))
* [`dd2072b`](graalvm/native-build-tools@dd2072b) Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.18.0 in /samples/java-...
* [`e10adf0`](graalvm/native-build-tools@e10adf0) Add class introduced in 6.1
* [`53a3319`](graalvm/native-build-tools@53a3319) Bump version to 1.1.6-SNAPSHOT ([#990](https://redirect.github.com/graalvm/native-build-tools/issues/990))
* Additional commits viewable in [compare view](graalvm/native-build-tools@0.10.6...1.1.6)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=org.graalvm.buildtools:native-maven-plugin&package-manager=maven&previous-version=0.10.6&new-version=1.1.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

OCA Verified All contributors have signed the Oracle Contributor Agreement. rhei

Projects

None yet

Development

Successfully merging this pull request may close these issues.

When running with -Pagent the command should output the destination dir

2 participants