blob: 24591a001cc31586e2959dd53217a16b7d711006 [file] [log] [blame]
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +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: LGPL-3.0-or-later
7-->
8
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +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>
Matthias Andreas Benkardb8fbc372021-05-11 06:50:45 +020015 <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020016 <artifactId>quarkus-googlecloud-jsonlogging-parent</artifactId>
Matthias Andreas Benkarde1b76f22022-02-16 07:53:55 +010017 <version>4.0.1</version>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020018 </parent>
Matthias Andreas Benkard3a997da2021-05-12 05:40:43 +020019
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020020 <artifactId>quarkus-googlecloud-jsonlogging-deployment</artifactId>
21 <name>Quarkus Google Cloud JSON Logging Extension - Deployment</name>
22
23 <dependencies>
24 <dependency>
25 <groupId>io.quarkus</groupId>
Matthias Andreas Benkard82d7e442021-08-29 08:34:11 +020026 <artifactId>quarkus-arc-deployment</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>io.quarkus</groupId>
Matthias Andreas Benkardc066d892021-05-11 21:27:23 +020030 <artifactId>quarkus-core-deployment</artifactId>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020031 </dependency>
32 <dependency>
33 <groupId>io.quarkus</groupId>
Matthias Andreas Benkardb8fbc372021-05-11 06:50:45 +020034 <artifactId>quarkus-jsonp-deployment</artifactId>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020035 </dependency>
36 <dependency>
Matthias Andreas Benkardb8fbc372021-05-11 06:50:45 +020037 <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020038 <artifactId>quarkus-googlecloud-jsonlogging</artifactId>
39 <version>${project.version}</version>
40 </dependency>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020041 </dependencies>
42
43 <build>
44 <plugins>
45 <plugin>
46 <artifactId>maven-compiler-plugin</artifactId>
47 <configuration>
48 <annotationProcessorPaths>
49 <path>
50 <groupId>io.quarkus</groupId>
51 <artifactId>quarkus-extension-processor</artifactId>
52 <version>${quarkus.version}</version>
53 </path>
54 </annotationProcessorPaths>
55 </configuration>
56 </plugin>
57 </plugins>
58 </build>
59
60</project>