quarkus-github-app-integration-tests-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.quarkiverse.githubapp</groupId>
<artifactId>quarkus-github-app-integration-tests-parent</artifactId>
<version>2.7.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.quarkiverse.githubapp</groupId>
<artifactId>quarkus-github-app-parent</artifactId>
<version>2.7.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>quarkus-github-app-integration-tests-parent</artifactId>
<name>Quarkus - GitHub App - Integration Tests</name>
<packaging>pom</packaging>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<native.surefire.skip>${skipTests}</native.surefire.skip>
</properties>
<modules>
<module>testing-framework</module>
<module>app</module>
<module>command-airline</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<!-- Common native image test profile
WARNING: In this parent profile, you cannot override properties in a submodule!
Plugin config can only be overridden (to a certain point) via pluginManagement!
This is due to how Maven handles profiles in parents:
A property in a submodule takes precedence (sic!) over a property in this parent profile. -->
<profile>
<id>native</id>
<activation>
<property>
<name>native</name>
</property>
<file>
<missing>${basedir}/disable-native-profile</missing>
</file>
</activation>
<properties>
<quarkus.package.type>native</quarkus.package.type>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>${native.surefire.skip}</skipTests>
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<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>
<native.image.path>
${project.build.directory}/${project.build.finalName}-runner
</native.image.path>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>