You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/01/27 05:50:22 UTC

[camel] 06/08: CAMEL-15341 - Regen and added back profile for skipping IT Test

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

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

commit 988bdbbc5a3f6a13d8a2b57dbc9c9dff24b21e7c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jan 27 06:40:08 2021 +0100

    CAMEL-15341 - Regen and added back profile for skipping IT Test
---
 .../docs/azure-storage-datalake-component.adoc     |  1 +
 components/camel-azure-storage-datalake/pom.xml    | 29 ++++++++++++++++++++++
 .../pages/azure-storage-datalake-component.adoc    |  1 +
 3 files changed, 31 insertions(+)

diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-datalake-component.adoc b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-datalake-component.adoc
index bc6f3e6..aafb47d 100644
--- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-datalake-component.adoc
+++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-datalake-component.adoc
@@ -550,3 +550,4 @@ You can also skip the integration test, and run only basic unit test by using th
 mvn test
 ----
 
+
diff --git a/components/camel-azure-storage-datalake/pom.xml b/components/camel-azure-storage-datalake/pom.xml
index b4ecd6b..1c5fba3 100644
--- a/components/camel-azure-storage-datalake/pom.xml
+++ b/components/camel-azure-storage-datalake/pom.xml
@@ -106,5 +106,34 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+    <profiles>
+        <profile>
+            <id>fullTests</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <version>${maven-surefire-plugin-version}</version>
+                        <executions>
+                            <execution>
+                                <phase>integration-test</phase>
+                                <goals>
+                                    <goal>test</goal>
+                                </goals>
+                                <configuration>
+                                    <excludes>
+                                        <exclude>none</exclude>
+                                    </excludes>
+                                    <includes>
+                                        <include>**/*IT</include>
+                                    </includes>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>
 
diff --git a/docs/components/modules/ROOT/pages/azure-storage-datalake-component.adoc b/docs/components/modules/ROOT/pages/azure-storage-datalake-component.adoc
index fffe00e..11f651a 100644
--- a/docs/components/modules/ROOT/pages/azure-storage-datalake-component.adoc
+++ b/docs/components/modules/ROOT/pages/azure-storage-datalake-component.adoc
@@ -552,3 +552,4 @@ You can also skip the integration test, and run only basic unit test by using th
 mvn test
 ----
 
+