This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 9ec83b2bf6c (chores) camel-zeebe: avoid polluting the build 9ec83b2bf6c is described below commit 9ec83b2bf6ca03fd9e7cb61ef16f9c074bab0726 Author: Otavio R. Piske <angusyo...@gmail.com> AuthorDate: Sat Feb 10 11:14:48 2024 +0100 (chores) camel-zeebe: avoid polluting the build Remove unnecessary profile to avoid polluting/over-complicating the build Signed-off-by: Otavio R. Piske <angusyo...@gmail.com> --- components/camel-zeebe/pom.xml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/components/camel-zeebe/pom.xml b/components/camel-zeebe/pom.xml index 64dbe4868a3..7a61dbd0382 100644 --- a/components/camel-zeebe/pom.xml +++ b/components/camel-zeebe/pom.xml @@ -103,31 +103,4 @@ <scope>test</scope> </dependency> </dependencies> - - <profiles> - <profile> - <id>zeebe-integration</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-failsafe-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>integration-test</goal> - <goal>verify</goal> - </goals> - </execution> - </executions> - <configuration> - <systemPropertyVariables> - <zeebe.test.integration.enable>true</zeebe.test.integration.enable> - </systemPropertyVariables> - </configuration> - </plugin> - </plugins> - </build> - </profile> - </profiles> </project>