You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2020/08/24 18:53:44 UTC

[camel-quarkus] 02/02: Docs: mention camel-quarkus-main in the contributor guide

This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit e534ef6a7b1e0bc27e7ef01a1d9ad1fb60549a19
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Mon Aug 24 18:07:53 2020 +0200

    Docs: mention camel-quarkus-main in the contributor guide
---
 .../modules/ROOT/pages/contributor-guide/create-new-extension.adoc | 7 +++++++
 .../ROOT/pages/contributor-guide/promote-jvm-to-native.adoc        | 7 +++++++
 2 files changed, 14 insertions(+)

diff --git a/docs/modules/ROOT/pages/contributor-guide/create-new-extension.adoc b/docs/modules/ROOT/pages/contributor-guide/create-new-extension.adoc
index ea6f85f..815f615 100644
--- a/docs/modules/ROOT/pages/contributor-guide/create-new-extension.adoc
+++ b/docs/modules/ROOT/pages/contributor-guide/create-new-extension.adoc
@@ -66,6 +66,13 @@ because the test project needs to get finished. You need to build `poms/bom` and
 9. Complete the integration test module under `integration-tests/foo-abc`. Make sure you test both the consumer and the
    producer of the component (if the component supports both). Make sure the tests are passing both in the JVM mode
    (`mvn test`) and in the native mode (`mvn verify -Pnative`).
++
+[TIP]
+====
+If your test application is going to be configured via `camel.component.*` properties, you need to add the
+`camel-quarkus-main` dependency to the test project. See the xref:user-guide/bootstrap.adoc[Bootstrap] section of
+the User guide for more details.
+====
 
 10. In case of problems, consult the https://quarkus.io/guides/extension-authors-guide[Quarkus extension author's guide],
    ask for help in the given GitHub issue or via https://gitter.im/apache/camel-quarkus[Camel Quarkus chat].
diff --git a/docs/modules/ROOT/pages/contributor-guide/promote-jvm-to-native.adoc b/docs/modules/ROOT/pages/contributor-guide/promote-jvm-to-native.adoc
index 763dc5c..7be0198 100644
--- a/docs/modules/ROOT/pages/contributor-guide/promote-jvm-to-native.adoc
+++ b/docs/modules/ROOT/pages/contributor-guide/promote-jvm-to-native.adoc
@@ -46,6 +46,13 @@ $ cd integration-tests/foo
 $ mvn clean verify -Pnative
 ----
 +
+[TIP]
+====
+If your test application is going to be configured via `camel.component.*` properties, you need to add the
+`camel-quarkus-main` dependency to the test project. See the xref:user-guide/bootstrap.adoc[Bootstrap] section of
+the User guide for more details.
+====
++
 Consider shifting some tasks from runtime to build time.
 The https://quarkus.io/guides/extension-authors-guide[Quarkus extension author's guide] may be a good ally for this.