Skip to content

Commit 521d270

Browse files
authored
Merge pull request #50974 from andreas-eberle/patch-1
Fix Quotes for Kotlin example in gradle-tooling.adoc
2 parents 491d127 + 1f90f2a commit 521d270

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/main/asciidoc/gradle-tooling.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -798,10 +798,10 @@ plugins {
798798
799799
quarkus {
800800
buildForkOptions {
801-
maxHeapSize = '2g'
801+
maxHeapSize = "2g"
802802
}
803803
codeGenForkOptions {
804-
maxHeapSize = '128m'
804+
maxHeapSize = "128m"
805805
}
806806
}
807807
----
@@ -933,4 +933,4 @@ The current state of compatibility is shown in the following table:
933933
The approach to enable Quarkus conditional and extension build time (deployment) dependencies has changed in Quarkus 3.25.1 due to a few issues with the previous implementation.
934934
Specifically, the previous implementation would not apply relevant dependency exclusions to enabled conditional and deployment dependencies. It would also appear to leak devmode-only dependencies into non-devmode classpaths (such as test and prod) in some cases. These issues couldn't be fixed in a reasonable way in the previous implementation, which is why the Quarkus dependency resolution had to be re-implemented based on a different approach using link:https://docs.gradle.org/current/userguide/variant_aware_resolution.html[Gradle component variants].
935935

936-
The previous implementation still remains available for now in case the new one appears to introduce not yet detected regressions and can be enabled by setting `disableQuarkusComponentVariants` project property to `true`.
936+
The previous implementation still remains available for now in case the new one appears to introduce not yet detected regressions and can be enabled by setting `disableQuarkusComponentVariants` project property to `true`.

0 commit comments

Comments
 (0)