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 | 3045065 | 2023-09-24 19:35:07 +0200 | [diff] [blame] | 17 | <version>6.1.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 | |
Matthias Andreas Benkard | f277b70 | 2023-09-24 20:58:35 +0200 | [diff] [blame] | 23 | <dependencyManagement> |
| 24 | <dependencies> |
| 25 | <dependency> |
| 26 | <groupId>io.quarkus</groupId> |
| 27 | <artifactId>quarkus-bom</artifactId> |
| 28 | <version>${quarkus.version}</version> |
| 29 | <type>pom</type> |
| 30 | <scope>import</scope> |
| 31 | </dependency> |
| 32 | </dependencies> |
| 33 | </dependencyManagement> |
| 34 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 35 | <dependencies> |
| 36 | <dependency> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 37 | <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId> |
| 38 | <artifactId>quarkus-googlecloud-jsonlogging-core</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 43 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | 82d7e44 | 2021-08-29 08:34:11 +0200 | [diff] [blame] | 44 | <artifactId>quarkus-arc</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | c066d89 | 2021-05-11 21:27:23 +0200 | [diff] [blame] | 48 | <artifactId>quarkus-core</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | b8fbc37 | 2021-05-11 06:50:45 +0200 | [diff] [blame] | 52 | <artifactId>quarkus-jsonp</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 53 | </dependency> |
| 54 | </dependencies> |
| 55 | |
| 56 | <build> |
| 57 | <plugins> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 58 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 59 | <plugin> |
| 60 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | ab71a01 | 2023-05-10 06:54:36 +0200 | [diff] [blame] | 61 | <artifactId>quarkus-extension-maven-plugin</artifactId> |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 62 | <version>${quarkus.version}</version> |
| 63 | <executions> |
| 64 | <execution> |
| 65 | <phase>compile</phase> |
| 66 | <goals> |
| 67 | <goal>extension-descriptor</goal> |
| 68 | </goals> |
| 69 | <configuration> |
| 70 | <deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment> |
| 71 | </configuration> |
| 72 | </execution> |
| 73 | </executions> |
| 74 | </plugin> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 75 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 76 | <plugin> |
| 77 | <artifactId>maven-compiler-plugin</artifactId> |
| 78 | <configuration> |
| 79 | <annotationProcessorPaths> |
| 80 | <path> |
| 81 | <groupId>io.quarkus</groupId> |
| 82 | <artifactId>quarkus-extension-processor</artifactId> |
| 83 | <version>${quarkus.version}</version> |
| 84 | </path> |
| 85 | </annotationProcessorPaths> |
| 86 | </configuration> |
| 87 | </plugin> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 88 | |
| 89 | <plugin> |
| 90 | <artifactId>maven-jar-plugin</artifactId> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 91 | <configuration> |
| 92 | <archive> |
| 93 | <manifestEntries> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 94 | <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] | 95 | </manifestEntries> |
| 96 | </archive> |
| 97 | </configuration> |
| 98 | </plugin> |
| 99 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 100 | </plugins> |
Matthias Andreas Benkard | bf4c329 | 2021-07-25 16:44:10 +0200 | [diff] [blame] | 101 | |
Matthias Andreas Benkard | c8144a9 | 2021-05-03 08:04:53 +0200 | [diff] [blame] | 102 | </build> |
| 103 | |
| 104 | </project> |