blob: c24dc93a1cd700698c50296d64f26a0b4fa07c0b [file] [log] [blame]
Matthias Andreas Benkard78d803c2021-05-11 21:44:31 +02001<?xml version="1.0" encoding="UTF-8"?>
Matthias Andreas Benkard80909242022-02-03 20:47:47 +01002
3<!--
4SPDX-FileCopyrightText: © 2021 Matthias Andreas Benkard <code@mail.matthias.benkard.de>
5
6SPDX-License-Identifier: GPL-3.0-or-later
7-->
8
Matthias Andreas Benkard78d803c2021-05-11 21:44:31 +02009<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 Benkarde9df2982024-06-23 17:42:44 +020017 <version>6.2.0</version>
Matthias Andreas Benkard78d803c2021-05-11 21:44:31 +020018 </parent>
19
Matthias Andreas Benkard348f2052022-01-15 16:13:01 +010020 <artifactId>quarkus-googlecloud-jsonlogging-quarkus-example</artifactId>
21 <name>Quarkus Google Cloud JSON Logging Extension - Quarkus Example</name>
Matthias Andreas Benkard78d803c2021-05-11 21:44:31 +020022
Matthias Andreas Benkardf277b702023-09-24 20:58:35 +020023 <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 Benkard78d803c2021-05-11 21:44:31 +020035 <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>