Skip to content

Commit

Permalink
Merge pull request #5510 from geoand/gradle-graal-config-doc
Browse files Browse the repository at this point in the history
Show more robust gradle graal configuration in docs
  • Loading branch information
gastaldi authored Nov 18, 2019
2 parents bf9e8f3 + af68dfa commit 4e3a5d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/writing-native-applications-tips.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ When using Gradle, we need to configure the additional build arguments in the pl
----
buildNative {
additionalBuildArgs = [
'-H:ResourceConfigurationFiles=../resources/main/resources-config.json'
"-H:ResourceConfigurationFiles=${buildDir}/resources/main/resources-config.json".toString()
]
}
----
Expand Down Expand Up @@ -221,7 +221,7 @@ When using Gradle, we need to configure the additional build arguments in the pl
----
buildNative {
additionalBuildArgs = [
'-H:ReflectionConfigurationFiles=resources/main/reflection-config.json'
"-H:ReflectionConfigurationFiles=${buildDir}/resources/main/reflection-config.json".toString()
]
}
----
Expand Down

0 comments on commit 4e3a5d3

Please sign in to comment.