This is an automated email from the ASF dual-hosted git repository. zbendhiba pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git
commit fe3df744f353abb47ff783c47ce84da255662a4b Author: James Netherton <[email protected]> AuthorDate: Fri Dec 3 11:50:58 2021 +0000 Ensure health example native tests are executed --- health/pom.xml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/health/pom.xml b/health/pom.xml index cd04def..6453036 100644 --- a/health/pom.xml +++ b/health/pom.xml @@ -259,6 +259,27 @@ <properties> <quarkus.package.type>native</quarkus.package.type> </properties> + <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> + <configuration> + <systemPropertyVariables> + <quarkus.package.type>${quarkus.package.type}</quarkus.package.type> + </systemPropertyVariables> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> </profile> </profiles>
