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