Skip to content

Commit 59a18d6

Browse files
committed
[#1158] Fix broken links to GraalVM repo
1 parent df113c9 commit 59a18d6

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

RELEASE-NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Picocli follows [semantic versioning](http://semver.org/).
1818

1919

2020
## <a name="4.5.2-fixes"></a> Fixed issues
21+
* [#1158] DOC: Fix broken links to GraalVM repo. Thanks to [Andreas Deininger](https://github.com/deining) for the pull request.
2122
* [#1155] DOC: Fix sample code in chapter "Validation". Thanks to [Andreas Deininger](https://github.com/deining) for the pull request.
2223
* [#1157] DOC: Fix typo "a argument group" in user manual. Thanks to sabrina at exchange.culturesky.com for raising this.
2324

docs/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7078,7 +7078,7 @@ After installing GraalVM and installing the `native-image` generator utility (wi
70787078
you can then create a native image by invoking the `native-image` command:
70797079

70807080
----
7081-
path/to/native-image -cp picocli-4.5.1.jar --static -jar myapp.jar
7081+
path/to/native-image -cp picocli-4.5.2-SNAPSHOT.jar --static -jar myapp.jar
70827082
----
70837083

70847084
CAUTION: To create a native image, the compiler toolchain for your platform needs to be installed. See https://www.infoq.com/articles/java-native-cli-graalvm-picocli/[Build Great Native CLI Apps in Java with Graalvm and Picocli] for details.

docs/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -994,9 +994,9 @@ <h3 id="_annotation_processor"><a class="anchor" href="#_annotation_processor"><
994994
<p><strong>Compile time error checking</strong>. The annotation processor shows errors for invalid annotations and attributes immediately when you compile, instead of during testing at runtime, resulting in shorter feedback cycles.</p>
995995
</li>
996996
<li>
997-
<p><strong><a href="#_graalvm_native_image">GraalVM native images</a></strong>. The annotation processor generates and updates <a href="https://github.com/oracle/graal/blob/master/substratevm/CONFIGURE.md">GraalVM configuration</a> files under
997+
<p><strong><a href="#_graalvm_native_image">GraalVM native images</a></strong>. The annotation processor generates and updates <a href="https://github.com/oracle/graal/blob/master/substratevm/Configuration.md">GraalVM configuration</a> files under
998998
<code>META-INF/native-image/picocli-generated/$project</code> during compilation, to be included in the application jar.
999-
This includes configuration files for <a href="https://github.com/oracle/graal/blob/master/substratevm/REFLECTION.md">reflection</a>, <a href="https://github.com/oracle/graal/blob/master/substratevm/RESOURCES.md">resources</a> and <a href="https://github.com/oracle/graal/blob/master/substratevm/DYNAMIC_PROXY.md">dynamic proxies</a>.
999+
This includes configuration files for <a href="https://github.com/oracle/graal/blob/master/substratevm/Reflection.md">reflection</a>, <a href="https://github.com/oracle/graal/blob/master/substratevm/Resources.md">resources</a> and <a href="https://github.com/oracle/graal/blob/master/substratevm/DynamicProxy.md">dynamic proxies</a>.
10001000
By embedding these configuration files, your jar is instantly Graal-enabled.
10011001
In most cases no further configuration is needed when generating a native image.</p>
10021002
</li>
@@ -10488,8 +10488,8 @@ <h4 id="_what_are_graalvm_native_images"><a class="anchor" href="#_what_are_graa
1048810488
The generated native image has faster startup time and lower runtime memory overhead compared to a Java VM.</p>
1048910489
</div>
1049010490
<div class="paragraph">
10491-
<p>GraalVM native images have some limitations and require some extra <a href="https://github.com/oracle/graal/blob/master/substratevm/CONFIGURE.md">configuration</a>
10492-
to be able to use features like <a href="https://github.com/oracle/graal/blob/master/substratevm/REFLECTION.md">reflection</a>, <a href="https://github.com/oracle/graal/blob/master/substratevm/RESOURCES.md">resources</a> (including resource bundles) and <a href="https://github.com/oracle/graal/blob/master/substratevm/DYNAMIC_PROXY.md">dynamic proxies</a>.</p>
10491+
<p>GraalVM native images have some limitations and require some extra <a href="https://github.com/oracle/graal/blob/master/substratevm/Configuration.md">configuration</a>
10492+
to be able to use features like <a href="https://github.com/oracle/graal/blob/master/substratevm/Reflection.md">reflection</a>, <a href="https://github.com/oracle/graal/blob/master/substratevm/Resources.md">resources</a> (including resource bundles) and <a href="https://github.com/oracle/graal/blob/master/substratevm/DynamicProxy.md">dynamic proxies</a>.</p>
1049310493
</div>
1049410494
</div>
1049510495
<div class="sect3">
@@ -10512,7 +10512,7 @@ <h4 id="_how_do_i_create_a_native_image_for_my_application"><a class="anchor" hr
1051210512
</div>
1051310513
<div class="listingblock">
1051410514
<div class="content">
10515-
<pre>path/to/native-image -cp picocli-4.2.0.jar --static -jar myapp.jar</pre>
10515+
<pre>path/to/native-image -cp picocli-4.5.1.jar --static -jar myapp.jar</pre>
1051610516
</div>
1051710517
</div>
1051810518
<div class="admonitionblock caution">

0 commit comments

Comments
 (0)