|
| 1 | +<?xml version="1.0"?> |
| 2 | +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 4 | + <parent> |
| 5 | + <groupId>io.quarkiverse.googlecloudservices</groupId> |
| 6 | + <artifactId>quarkus-google-cloud-services-integration-tests-parent</artifactId> |
| 7 | + <version>0.12.0-SNAPSHOT</version> |
| 8 | + <relativePath>../pom.xml</relativePath> |
| 9 | + </parent> |
| 10 | + <modelVersion>4.0.0</modelVersion> |
| 11 | + |
| 12 | + <artifactId>quarkus-google-cloud-services-smallrye-reactive-messaging-pubsub-it</artifactId> |
| 13 | + <name>Quarkus - Google Cloud Services - Integration Tests - Smallrye Reactive messaging Pub/Sub</name> |
| 14 | + |
| 15 | + <properties> |
| 16 | + <native.surefire.skip>${skipTests}</native.surefire.skip> |
| 17 | + </properties> |
| 18 | + |
| 19 | + <dependencies> |
| 20 | + <dependency> |
| 21 | + <groupId>io.quarkiverse.googlecloudservices</groupId> |
| 22 | + <artifactId>smallrye-reactive-messaging-pubsub</artifactId> |
| 23 | + <version>0.12.0-SNAPSHOT</version> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>io.quarkus</groupId> |
| 27 | + <artifactId>quarkus-arc</artifactId> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>io.quarkus</groupId> |
| 31 | + <artifactId>quarkus-junit5</artifactId> |
| 32 | + <scope>test</scope> |
| 33 | + </dependency> |
| 34 | + </dependencies> |
| 35 | + <build> |
| 36 | + <plugins> |
| 37 | + <plugin> |
| 38 | + <groupId>io.quarkus</groupId> |
| 39 | + <artifactId>quarkus-maven-plugin</artifactId> |
| 40 | + <version>${quarkus.version}</version> |
| 41 | + <executions> |
| 42 | + <execution> |
| 43 | + <goals> |
| 44 | + <goal>build</goal> |
| 45 | + <goal>generate-code</goal> |
| 46 | + <goal>generate-code-tests</goal> |
| 47 | + </goals> |
| 48 | + </execution> |
| 49 | + </executions> |
| 50 | + </plugin> |
| 51 | + <plugin> |
| 52 | + <artifactId>maven-compiler-plugin</artifactId> |
| 53 | + <version>${compiler-plugin.version}</version> |
| 54 | + </plugin> |
| 55 | + <plugin> |
| 56 | + <artifactId>maven-surefire-plugin</artifactId> |
| 57 | + <configuration> |
| 58 | + <systemPropertyVariables> |
| 59 | + <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
| 60 | + <maven.home>${maven.home}</maven.home> |
| 61 | + </systemPropertyVariables> |
| 62 | + </configuration> |
| 63 | + </plugin> |
| 64 | + </plugins> |
| 65 | + </build> |
| 66 | + <profiles> |
| 67 | + <profile> |
| 68 | + <id>native</id> |
| 69 | + <activation> |
| 70 | + <property> |
| 71 | + <name>native</name> |
| 72 | + </property> |
| 73 | + </activation> |
| 74 | + <build> |
| 75 | + <plugins> |
| 76 | + <plugin> |
| 77 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 78 | + <version>${surefire-plugin.version}</version> |
| 79 | + <executions> |
| 80 | + <execution> |
| 81 | + <goals> |
| 82 | + <goal>integration-test</goal> |
| 83 | + <goal>verify</goal> |
| 84 | + </goals> |
| 85 | + <configuration> |
| 86 | + <systemPropertyVariables> |
| 87 | + <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path> |
| 88 | + <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
| 89 | + <maven.home>${maven.home}</maven.home> |
| 90 | + </systemPropertyVariables> |
| 91 | + </configuration> |
| 92 | + </execution> |
| 93 | + </executions> |
| 94 | + </plugin> |
| 95 | + </plugins> |
| 96 | + </build> |
| 97 | + <properties> |
| 98 | + <quarkus.package.type>native</quarkus.package.type> |
| 99 | + </properties> |
| 100 | + </profile> |
| 101 | + </profiles> |
| 102 | +</project> |
0 commit comments