quarkus-opentelemetry-exporter-gcp-integration-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkiverse.opentelemetry.exporter</groupId> <artifactId>quarkus-opentelemetry-exporter-gcp-integration-tests</artifactId> <version>3.8.3.1</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.opentelemetry.exporter</groupId> <artifactId>quarkus-opentelemetry-exporter-gcp-parent</artifactId> <version>3.8.3.1</version> </parent> <artifactId>quarkus-opentelemetry-exporter-gcp-integration-tests</artifactId> <name>Quarkus Opentelemetry Exporter GCP - Integration Tests</name> <properties> <skipITs>true</skipITs> </properties> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy-jackson</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-rest-client</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-grpc</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy-mutiny</artifactId> </dependency> <dependency> <groupId>io.quarkiverse.opentelemetry.exporter</groupId> <artifactId>quarkus-opentelemetry-exporter-gcp</artifactId> <version>${project.version}</version> </dependency> <!-- TESTS --> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <version>${testcontainers-junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.quarkus</groupId> <artifactId>quarkus-maven-plugin</artifactId> <extensions>true</extensions> <executions> <execution> <goals> <goal>build</goal> <goal>generate-code</goal> <goal>generate-code-tests</goal> </goals> </execution> </executions> </plugin> <plugin> <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> <!-- FIXME native mode not working. The UdsNameResolverProvider is forced to be --> <!-- initialized at run time with no good reason. This can be related to https://github.com/oracle/graal/pull/8230. --> <!-- <profiles>--> <!-- <profile>--> <!-- <id>native-image</id>--> <!-- <activation>--> <!-- <property>--> <!-- <name>native</name>--> <!-- </property>--> <!-- </activation>--> <!-- <build>--> <!-- <plugins>--> <!-- <plugin>--> <!-- <artifactId>maven-surefire-plugin</artifactId>--> <!-- <configuration>--> <!-- <skipTests>${native.surefire.skip}</skipTests>--> <!-- </configuration>--> <!-- </plugin>--> <!-- </plugins>--> <!-- </build>--> <!-- <properties>--> <!-- <skipITs>false</skipITs>--> <!-- <quarkus.package.type>native</quarkus.package.type>--> <!-- <quarkus.native.additional-build-args>-H:ReflectionConfigurationFiles=reflection-config.json</quarkus.native.additional-build-args>--> <!-- </properties>--> <!-- </profile>--> <!-- </profiles>--> </project>