You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/docs/asciidoc/docinfo-footer.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,6 @@
2
2
<scriptsrc="js/multi-lang-sample.js"></script>
3
3
<divid="footer">
4
4
<divid="footer-text">
5
-
<imgsrc="https://www.graalvm.org/resources/img/logo-colored.svg" alt="GraalVM"> (c) {docyear}. Licensed under the Universal Permissive License (UPL), Version 1.0
5
+
<imgsrc="img/GraalVM-rgb.svg" alt="GraalVM"> (c) {docyear}. Licensed under the Universal Permissive License (UPL), Version 1.0
Copy file name to clipboardExpand all lines: docs/src/docs/asciidoc/maven-plugin-quickstart.adoc
+3-7Lines changed: 3 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ You will create a sample application, enable the plugin, add support for dynamic
9
9
====
10
10
The plugin requires that you https://www.graalvm.org/latest/docs/getting-started/[setup GraalVM].
11
11
12
-
The easiest way to install GraalVM is to use the https://sdkman.io/jdks[SDKMAN!].
12
+
The easiest way to install GraalVM is to use https://sdkman.io/jdks[SDKMAN!].
13
13
14
14
For other installation options, go to https://www.graalvm.org/downloads/[GraalVM Downloads].
15
15
====
@@ -314,12 +314,8 @@ With this plugin you can already build a native executable directly with Maven b
314
314
315
315
== Build a Native Executable by Detecting Resources with the Agent
316
316
317
-
<<<<<<< HEAD
318
317
This demo application and requires metadata before building a native executable.
319
318
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.
320
-
=======
321
-
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.
322
-
>>>>>>> 24e5db3b (Remove extra word)
323
319
The agent is disabled by default, and can be enabled in project's _pom.xml_ file or via the command line.
324
320
325
321
. To enable the agent via the _pom.xml_ file, specify `<enabled>true</enabled>` in the `native-maven-plugin` plugin configuration:
@@ -442,7 +438,7 @@ executable.
442
438
<version>${native.maven.plugin.version}</version>
443
439
<extensions>true</extensions>
444
440
...
445
-
</plugin>
441
+
</plugin>
446
442
----
447
443
. Add an explicit dependency on the `junit-platform-launcher` artifact in the dependencies section of your native profile configuration as in the following example:
448
444
+
@@ -459,7 +455,7 @@ executable.
459
455
</dependency>
460
456
</dependencies>
461
457
...
462
-
</profile>
458
+
</profile>
463
459
----
464
460
. Create the following test in the _src/test/java/demo/FortuneTest.java_ file:
0 commit comments