You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/03/30 14:47:17 UTC

[camel-website] branch master updated: Update building.md

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9a25409  Update building.md
9a25409 is described below

commit 9a25409be2321e268b10a4ba16f364c3754eb034
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Mar 30 16:47:07 2020 +0200

    Update building.md
---
 content/docs/building.md | 16 ++--------------
 1 file changed, 2 insertions(+), 14 deletions(-)

diff --git a/content/docs/building.md b/content/docs/building.md
index de8cf54..1283703 100644
--- a/content/docs/building.md
+++ b/content/docs/building.md
@@ -73,8 +73,6 @@ mvn clean install -Pfastinstall,sourcecheck
 
 ## Doing a Quick Build
 
-### Available as of Camel 2.6
-
 The following skips building the manual, the distro and does not execute the unit tests.
 
 ```
@@ -99,20 +97,10 @@ If you want to build jar files with the source code, that for instance Eclipse c
 mvn clean source:jar install -Pfastinstall
 ```
 
-## Working with karaf features
+## Working with Karaf features
 
-If you change anything in the features.xml from platform/karaf you can run a validation step to ensure the generated features.xml file is correct. You can do this running the following maven goal from the platform directory.
+If you change anything in the features.xml from platform/karaf (in camel-karaf project) you can run a validation step to ensure the generated features.xml file is correct. You can do this running the following maven goal from the platform directory.
 
 ```
 mvn clean install -Pvalidate
 ```
-
-## Executing unit tests using Ekstazi
-
-Normally, when you execute the unit tests during your development cycle for a particular component, you are executing all the tests each time. This may become inefficient, when you are changing one class and the effect of this change is limited within the component having many unit tests. Ekstazi is a regression testing tool that can keep track of the test results and the changed classes so that unaffected tests can be skipped during the subsequent testing. For more details of Ekstazi, p [...]
-
-To use Ekstazi, you can run the tests with the maven profile ekstazi.
-
-```
-mvn test -Pekstazi
-```