diff --git a/docs/modules/ROOT/pages/reference/extensions/jasypt.adoc b/docs/modules/ROOT/pages/reference/extensions/jasypt.adoc index 745fa33d68f9..4d4b25d4617d 100644 --- a/docs/modules/ROOT/pages/reference/extensions/jasypt.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/jasypt.adoc @@ -57,7 +57,7 @@ By default, you do not need to write custom code to configure the Camel `JasyptP Any Camel configuration property added to `application.properties` can be secured with Jasypt. To encrypt a value, there is a utility that can be run with https://www.jbang.dev/[JBang]. -[source,shell,subs="attributes"] +[source] ---- jbang org.apache.camel:camel-jasypt:{camel-version} -c encrypt -p secret-password -i "Some secret content" ---- diff --git a/docs/modules/ROOT/pages/reference/extensions/mapstruct.adoc b/docs/modules/ROOT/pages/reference/extensions/mapstruct.adoc index aaa9c9a2b8ee..4d2268cd80d2 100644 --- a/docs/modules/ROOT/pages/reference/extensions/mapstruct.adoc +++ b/docs/modules/ROOT/pages/reference/extensions/mapstruct.adoc @@ -54,7 +54,7 @@ To use MapStruct, you must configure your build to use an annotation processor. [id="extensions-mapstruct-usage-maven"] ==== Maven -[source,xml,subs="attributes"] +[source,xml] ---- @@ -76,7 +76,7 @@ To use MapStruct, you must configure your build to use an annotation processor. [id="extensions-mapstruct-usage-gradle"] ==== Gradle -[source,gradle,subs="attributes"] +[source,gradle] ---- dependencies { annotationProcessor 'org.mapstruct:mapstruct-processor:{mapstruct-version}' diff --git a/extensions/jasypt/runtime/src/main/doc/usage.adoc b/extensions/jasypt/runtime/src/main/doc/usage.adoc index f56050e4da81..f8a55b4b362b 100644 --- a/extensions/jasypt/runtime/src/main/doc/usage.adoc +++ b/extensions/jasypt/runtime/src/main/doc/usage.adoc @@ -9,7 +9,7 @@ By default, you do not need to write custom code to configure the Camel `JasyptP Any Camel configuration property added to `application.properties` can be secured with Jasypt. To encrypt a value, there is a utility that can be run with https://www.jbang.dev/[JBang]. -[source,shell,subs="attributes"] +[source] ---- jbang org.apache.camel:camel-jasypt:{camel-version} -c encrypt -p secret-password -i "Some secret content" ---- diff --git a/extensions/mapstruct/runtime/src/main/doc/usage.adoc b/extensions/mapstruct/runtime/src/main/doc/usage.adoc index 60e073a64ccf..dad335f4c90e 100644 --- a/extensions/mapstruct/runtime/src/main/doc/usage.adoc +++ b/extensions/mapstruct/runtime/src/main/doc/usage.adoc @@ -4,7 +4,7 @@ To use MapStruct, you must configure your build to use an annotation processor. ==== Maven -[source,xml,subs="attributes"] +[source,xml] ---- @@ -25,7 +25,7 @@ To use MapStruct, you must configure your build to use an annotation processor. ==== Gradle -[source,gradle,subs="attributes"] +[source,gradle] ---- dependencies { annotationProcessor 'org.mapstruct:mapstruct-processor:{mapstruct-version}'