blob: 6e4f042350f7db9ad84768be9933e7f07efb2c4d [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 Benkard62ee2f52022-10-05 07:57:02 +020017 <version>5.0.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
23 <dependencies>
24 <dependency>
25 <groupId>io.quarkus</groupId>
26 <artifactId>quarkus-resteasy</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId>
30 <artifactId>quarkus-googlecloud-jsonlogging</artifactId>
31 <version>${project.version}</version>
32 </dependency>
33 </dependencies>
34
35 <build>
36 <plugins>
37 <plugin>
38 <groupId>io.quarkus</groupId>
39 <artifactId>quarkus-maven-plugin</artifactId>
40 <executions>
41 <execution>
42 <goals>
43 <goal>build</goal>
44 </goals>
45 </execution>
46 </executions>
47 </plugin>
48 </plugins>
49 </build>
50
51</project>