Matthias Andreas Benkard | 78d803c | 2021-05-11 21:44:31 +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: GPL-3.0-or-later |
| 7 | --> |
| 8 | |
Matthias Andreas Benkard | 78d803c | 2021-05-11 21:44:31 +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> |
| 15 | <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId> |
| 16 | <artifactId>quarkus-googlecloud-jsonlogging-parent</artifactId> |
Matthias Andreas Benkard | 663163d | 2023-09-24 13:46:22 +0200 | [diff] [blame] | 17 | <version>6.1.0</version> |
Matthias Andreas Benkard | 78d803c | 2021-05-11 21:44:31 +0200 | [diff] [blame] | 18 | </parent> |
| 19 | |
Matthias Andreas Benkard | 348f205 | 2022-01-15 16:13:01 +0100 | [diff] [blame] | 20 | <artifactId>quarkus-googlecloud-jsonlogging-quarkus-example</artifactId> |
| 21 | <name>Quarkus Google Cloud JSON Logging Extension - Quarkus Example</name> |
Matthias Andreas Benkard | 78d803c | 2021-05-11 21:44:31 +0200 | [diff] [blame] | 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 | 78d803c | 2021-05-11 21:44:31 +0200 | [diff] [blame] | 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>io.quarkus</groupId> |
| 38 | <artifactId>quarkus-resteasy</artifactId> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId> |
| 42 | <artifactId>quarkus-googlecloud-jsonlogging</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
| 45 | </dependencies> |
| 46 | |
| 47 | <build> |
| 48 | <plugins> |
| 49 | <plugin> |
| 50 | <groupId>io.quarkus</groupId> |
| 51 | <artifactId>quarkus-maven-plugin</artifactId> |
| 52 | <executions> |
| 53 | <execution> |
| 54 | <goals> |
| 55 | <goal>build</goal> |
| 56 | </goals> |
| 57 | </execution> |
| 58 | </executions> |
| 59 | </plugin> |
| 60 | </plugins> |
| 61 | </build> |
| 62 | |
| 63 | </project> |