Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Matthias Andreas Benkard | 8090924 | 2022-02-03 20:47:47 +0100 | [diff] [blame] | 2 | |
| 3 | <!-- |
| 4 | SPDX-FileCopyrightText: © 2021 Matthias Andreas Benkard <code@mail.matthias.benkard.de> |
| 5 | |
| 6 | SPDX-License-Identifier: LGPL-3.0-or-later |
| 7 | --> |
| 8 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 9 | <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" |
| 10 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 11 | |
| 12 | <modelVersion>4.0.0</modelVersion> |
| 13 | |
| 14 | <parent> |
Matthias Andreas Benkard | b8fbc37 | 2021-05-11 06:50:45 +0200 | [diff] [blame] | 15 | <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 16 | <artifactId>quarkus-googlecloud-jsonlogging-parent</artifactId> |
Matthias Andreas Benkard | d082a11 | 2023-03-24 11:07:05 +0100 | [diff] [blame] | 17 | <version>6.0.1-SNAPSHOT</version> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 18 | </parent> |
Matthias Andreas Benkard | 3a997da | 2021-05-12 05:40:43 +0200 | [diff] [blame] | 19 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 20 | <artifactId>quarkus-googlecloud-jsonlogging</artifactId> |
| 21 | <name>Quarkus Google Cloud JSON Logging Extension - Runtime</name> |
| 22 | |
| 23 | <dependencies> |
| 24 | <dependency> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 25 | <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId> |
| 26 | <artifactId>quarkus-googlecloud-jsonlogging-core</artifactId> |
| 27 | <version>${project.version}</version> |
| 28 | </dependency> |
| 29 | |
| 30 | <dependency> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 31 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | 82d7e44 | 2021-08-29 08:34:11 +0200 | [diff] [blame] | 32 | <artifactId>quarkus-arc</artifactId> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | c066d89 | 2021-05-11 21:27:23 +0200 | [diff] [blame] | 36 | <artifactId>quarkus-core</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | b8fbc37 | 2021-05-11 06:50:45 +0200 | [diff] [blame] | 40 | <artifactId>quarkus-jsonp</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 41 | </dependency> |
| 42 | </dependencies> |
| 43 | |
| 44 | <build> |
| 45 | <plugins> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 46 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 47 | <plugin> |
| 48 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | ab71a01 | 2023-05-10 06:54:36 +0200 | [diff] [blame] | 49 | <artifactId>quarkus-extension-maven-plugin</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 50 | <version>${quarkus.version}</version> |
| 51 | <executions> |
| 52 | <execution> |
| 53 | <phase>compile</phase> |
| 54 | <goals> |
| 55 | <goal>extension-descriptor</goal> |
| 56 | </goals> |
| 57 | <configuration> |
| 58 | <deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment> |
| 59 | </configuration> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 63 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 64 | <plugin> |
| 65 | <artifactId>maven-compiler-plugin</artifactId> |
| 66 | <configuration> |
| 67 | <annotationProcessorPaths> |
| 68 | <path> |
| 69 | <groupId>io.quarkus</groupId> |
| 70 | <artifactId>quarkus-extension-processor</artifactId> |
| 71 | <version>${quarkus.version}</version> |
| 72 | </path> |
| 73 | </annotationProcessorPaths> |
| 74 | </configuration> |
| 75 | </plugin> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 76 | |
| 77 | <plugin> |
| 78 | <artifactId>maven-jar-plugin</artifactId> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 79 | <configuration> |
| 80 | <archive> |
| 81 | <manifestEntries> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 82 | <Automatic-Module-Name>eu.mulk.quarkus.googlecloud.jsonlogging.runtime</Automatic-Module-Name> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 83 | </manifestEntries> |
| 84 | </archive> |
| 85 | </configuration> |
| 86 | </plugin> |
| 87 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 88 | </plugins> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 89 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 90 | </build> |
| 91 | |
| 92 | </project> |