Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 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 | |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
Matthias Andreas Benkard | b8fbc37 | 2021-05-11 06:50:45 +0200 | [diff] [blame] | 8 | <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 9 | <artifactId>quarkus-googlecloud-jsonlogging-parent</artifactId> |
Matthias Andreas Benkard | 9a49787 | 2021-05-18 21:53:37 +0200 | [diff] [blame^] | 10 | <version>1.0.2-SNAPSHOT</version> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 11 | </parent> |
Matthias Andreas Benkard | 3a997da | 2021-05-12 05:40:43 +0200 | [diff] [blame] | 12 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 13 | <artifactId>quarkus-googlecloud-jsonlogging</artifactId> |
| 14 | <name>Quarkus Google Cloud JSON Logging Extension - Runtime</name> |
| 15 | |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | c066d89 | 2021-05-11 21:27:23 +0200 | [diff] [blame] | 19 | <artifactId>quarkus-core</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | b8fbc37 | 2021-05-11 06:50:45 +0200 | [diff] [blame] | 23 | <artifactId>quarkus-jsonp</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 24 | </dependency> |
| 25 | </dependencies> |
| 26 | |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>io.quarkus</groupId> |
| 31 | <artifactId>quarkus-bootstrap-maven-plugin</artifactId> |
| 32 | <version>${quarkus.version}</version> |
| 33 | <executions> |
| 34 | <execution> |
| 35 | <phase>compile</phase> |
| 36 | <goals> |
| 37 | <goal>extension-descriptor</goal> |
| 38 | </goals> |
| 39 | <configuration> |
| 40 | <deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment> |
| 41 | </configuration> |
| 42 | </execution> |
| 43 | </executions> |
| 44 | </plugin> |
| 45 | <plugin> |
| 46 | <artifactId>maven-compiler-plugin</artifactId> |
| 47 | <configuration> |
| 48 | <annotationProcessorPaths> |
| 49 | <path> |
| 50 | <groupId>io.quarkus</groupId> |
| 51 | <artifactId>quarkus-extension-processor</artifactId> |
| 52 | <version>${quarkus.version}</version> |
| 53 | </path> |
| 54 | </annotationProcessorPaths> |
| 55 | </configuration> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | </build> |
| 59 | |
| 60 | </project> |