Skip to content

Commit c2716a3

Browse files
committed
Sync documentation of main branch
1 parent d640b6f commit c2716a3

File tree

3 files changed

+30
-16
lines changed

3 files changed

+30
-16
lines changed

_generated-doc/main/infra/quarkus-maven-plugin-goals.adoc

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1245,6 +1245,15 @@ a| [[quarkus-maven-plugin-goal-dev-environmentVariables]] environmentVariables
12451245
|`Map`
12461246
|
12471247

1248+
a| [[quarkus-maven-plugin-goal-dev-forceC2]] forceC2
1249+
1250+
[.description]
1251+
--
1252+
This value is intended to be set to true when we want to require C2 compilation instead of preventing it from ever kicking in. Setting this will likely have a small negative effect on startup time and should only be done when it absolutely makes sense.
1253+
--
1254+
|`boolean`
1255+
|`${forceC2}`
1256+
12481257
a| [[quarkus-maven-plugin-goal-dev-jvmArgs]] jvmArgs
12491258

12501259
[.description]
@@ -2905,6 +2914,15 @@ a| [[quarkus-maven-plugin-goal-remote-dev-environmentVariables]] environmentVari
29052914
|`Map`
29062915
|
29072916

2917+
a| [[quarkus-maven-plugin-goal-remote-dev-forceC2]] forceC2
2918+
2919+
[.description]
2920+
--
2921+
This value is intended to be set to true when we want to require C2 compilation instead of preventing it from ever kicking in. Setting this will likely have a small negative effect on startup time and should only be done when it absolutely makes sense.
2922+
--
2923+
|`boolean`
2924+
|`${forceC2}`
2925+
29082926
a| [[quarkus-maven-plugin-goal-remote-dev-jvmArgs]] jvmArgs
29092927

29102928
[.description]
@@ -3380,6 +3398,15 @@ a| [[quarkus-maven-plugin-goal-test-environmentVariables]] environmentVariables
33803398
|`Map`
33813399
|
33823400

3401+
a| [[quarkus-maven-plugin-goal-test-forceC2]] forceC2
3402+
3403+
[.description]
3404+
--
3405+
This value is intended to be set to true when we want to require C2 compilation instead of preventing it from ever kicking in. Setting this will likely have a small negative effect on startup time and should only be done when it absolutely makes sense.
3406+
--
3407+
|`boolean`
3408+
|`${forceC2}`
3409+
33833410
a| [[quarkus-maven-plugin-goal-test-jvmArgs]] jvmArgs
33843411

33853412
[.description]

_versions/main/guides/building-native-image.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ Sample Dockerfile for building with Maven:
579579
----
580580
## Stage 1 : build with maven builder image with native capabilities
581581
FROM quay.io/quarkus/ubi-quarkus-mandrel-builder-image:{mandrel-flavor} AS build
582-
COPY --chown=quarkus:quarkus mvnw /code/mvnw
582+
COPY --chown=quarkus:quarkus --chmod=0755 mvnw /code/mvnw
583583
COPY --chown=quarkus:quarkus .mvn /code/.mvn
584584
COPY --chown=quarkus:quarkus pom.xml /code/
585585
USER quarkus

_versions/main/guides/datasource.adoc

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -259,26 +259,13 @@ For more information about configuring JDBC, see <<jdbc-url,JDBC URL format refe
259259
[[other-databases]]
260260
===== Custom databases and drivers
261261

262-
If you need to connect to a database for which Quarkus does not provide an extension with the JDBC driver, you can use a custom driver instead.
263-
For example, if you are using the OpenTracing JDBC driver in your project.
262+
If you need to connect to a database for which Quarkus does not provide an extension with the JDBC driver,
263+
you can use a custom driver instead. For example, if you are using the OpenTelemetry JDBC driver in your project.
264264

265265
Without an extension, the driver will work correctly in any Quarkus app running in JVM mode.
266266
However, the driver is unlikely to work when compiling your application to a native executable.
267267
If you plan to make a native executable, use the existing JDBC Quarkus extensions, or contribute one for your driver.
268268

269-
[WARNING]
270-
====
271-
OpenTracing has been deprecated in favor of OpenTelemetry.
272-
For tracing information, please check the related section about <<datasource-tracing>>, bellow.
273-
====
274-
275-
.A custom driver definition example with the legacy OpenTracing driver:
276-
277-
[source,properties]
278-
----
279-
quarkus.datasource.jdbc.driver=io.opentracing.contrib.jdbc.TracingDriver
280-
----
281-
282269
.An example for defining access to a database with no built-in support in JVM mode:
283270

284271
[source,properties]

0 commit comments

Comments
 (0)