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> |
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-deployment</artifactId> |
| 14 | <name>Quarkus Google Cloud JSON Logging Extension - Deployment</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-deployment</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-deployment</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 24 | </dependency> |
| 25 | <dependency> |
Matthias Andreas Benkard | b8fbc37 | 2021-05-11 06:50:45 +0200 | [diff] [blame] | 26 | <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 27 | <artifactId>quarkus-googlecloud-jsonlogging</artifactId> |
| 28 | <version>${project.version}</version> |
| 29 | </dependency> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 30 | </dependencies> |
| 31 | |
| 32 | <build> |
| 33 | <plugins> |
| 34 | <plugin> |
| 35 | <artifactId>maven-compiler-plugin</artifactId> |
| 36 | <configuration> |
| 37 | <annotationProcessorPaths> |
| 38 | <path> |
| 39 | <groupId>io.quarkus</groupId> |
| 40 | <artifactId>quarkus-extension-processor</artifactId> |
| 41 | <version>${quarkus.version}</version> |
| 42 | </path> |
| 43 | </annotationProcessorPaths> |
| 44 | </configuration> |
| 45 | </plugin> |
| 46 | </plugins> |
| 47 | </build> |
| 48 | |
| 49 | </project> |