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

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/docs/asciidoc/docinfo-footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<script src="js/multi-lang-sample.js"></script>
<div id="footer">
<div id="footer-text">
<img src="https://www.graalvm.org/resources/img/logo-colored.svg" alt="GraalVM"> (c) {docyear}. Licensed under the Universal Permissive License (UPL), Version 1.0
<img src="img/GraalVM-rgb.svg" alt="GraalVM"> (c) {docyear}. Licensed under the Universal Permissive License (UPL), Version 1.0
</div>
</div>
2 changes: 1 addition & 1 deletion docs/src/docs/asciidoc/gradle-plugin-quickstart.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Two ways of building a native executable using the plugin will be demonstrated:
====
The plugin requires that you https://www.graalvm.org/latest/docs/getting-started/[setup GraalVM].

The easiest way to install GraalVM is to use the https://sdkman.io/jdks[SDKMAN!].
The easiest way to install GraalVM is to use https://sdkman.io/jdks[SDKMAN!].

For other installation options, go to https://www.graalvm.org/downloads/[GraalVM Downloads].
====
Expand Down
27 changes: 27 additions & 0 deletions docs/src/docs/asciidoc/img/GraalVM-rgb.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 3 additions & 7 deletions docs/src/docs/asciidoc/maven-plugin-quickstart.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ You will create a sample application, enable the plugin, add support for dynamic
====
The plugin requires that you https://www.graalvm.org/latest/docs/getting-started/[setup GraalVM].

The easiest way to install GraalVM is to use the https://sdkman.io/jdks[SDKMAN!].
The easiest way to install GraalVM is to use https://sdkman.io/jdks[SDKMAN!].

For other installation options, go to https://www.graalvm.org/downloads/[GraalVM Downloads].
====
Expand Down Expand Up @@ -314,12 +314,8 @@ With this plugin you can already build a native executable directly with Maven b

== Build a Native Executable by Detecting Resources with the Agent

<<<<<<< HEAD
This demo application and requires metadata before building a native executable.
You do not have to configure anything manually: the plugin can generate the required configuration for you by injecting the https://graalvm.github.io/native-build-tools/latest/maven-plugin.html#agent-support[tracing agent] at package time.
=======
This demo application requires metadata before building a native executable. You do not have to configure anything manually: the plugin can generate the required configuration for you by injecting the https://graalvm.github.io/native-build-tools/latest/maven-plugin.html#agent-support[tracing agent] at package time.
>>>>>>> 24e5db3b (Remove extra word)
The agent is disabled by default, and can be enabled in project's _pom.xml_ file or via the command line.

. To enable the agent via the _pom.xml_ file, specify `<enabled>true</enabled>` in the `native-maven-plugin` plugin configuration:
Expand Down Expand Up @@ -442,7 +438,7 @@ executable.
<version>${native.maven.plugin.version}</version>
<extensions>true</extensions>
...
</plugin>
</plugin>
----
. Add an explicit dependency on the `junit-platform-launcher` artifact in the dependencies section of your native profile configuration as in the following example:
+
Expand All @@ -459,7 +455,7 @@ executable.
</dependency>
</dependencies>
...
</profile>
</profile>
----
. Create the following test in the _src/test/java/demo/FortuneTest.java_ file:
+
Expand Down