blob: f0d65abe9b14b4e1ca3b896a19f05a320a06aa64 [file] [log] [blame]
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +02001<?xml version="1.0" encoding="UTF-8"?>
2<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"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
Matthias Andreas Benkardb8fbc372021-05-11 06:50:45 +02008 <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +02009 <artifactId>quarkus-googlecloud-jsonlogging-parent</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 </parent>
Matthias Andreas Benkard3a997da2021-05-12 05:40:43 +020012
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020013 <artifactId>quarkus-googlecloud-jsonlogging</artifactId>
14 <name>Quarkus Google Cloud JSON Logging Extension - Runtime</name>
15
16 <dependencies>
17 <dependency>
18 <groupId>io.quarkus</groupId>
Matthias Andreas Benkardc066d892021-05-11 21:27:23 +020019 <artifactId>quarkus-core</artifactId>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020020 </dependency>
21 <dependency>
22 <groupId>io.quarkus</groupId>
Matthias Andreas Benkardb8fbc372021-05-11 06:50:45 +020023 <artifactId>quarkus-jsonp</artifactId>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020024 </dependency>
25 </dependencies>
26
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>io.quarkus</groupId>
31 <artifactId>quarkus-bootstrap-maven-plugin</artifactId>
32 <version>${quarkus.version}</version>
33 <executions>
34 <execution>
35 <phase>compile</phase>
36 <goals>
37 <goal>extension-descriptor</goal>
38 </goals>
39 <configuration>
40 <deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment>
41 </configuration>
42 </execution>
43 </executions>
44 </plugin>
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>