blob: a8ab579b05fed659f8b5f6377e11b7eb53878096 [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>
Matthias Andreas Benkard6c76a092021-12-18 19:03:39 +010010 <version>3.1.3</version>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020011 </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 Benkard82d7e442021-08-29 08:34:11 +020019 <artifactId>quarkus-arc</artifactId>
20 </dependency>
21 <dependency>
22 <groupId>io.quarkus</groupId>
Matthias Andreas Benkardc066d892021-05-11 21:27:23 +020023 <artifactId>quarkus-core</artifactId>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020024 </dependency>
25 <dependency>
26 <groupId>io.quarkus</groupId>
Matthias Andreas Benkardb8fbc372021-05-11 06:50:45 +020027 <artifactId>quarkus-jsonp</artifactId>
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020028 </dependency>
29 </dependencies>
30
31 <build>
32 <plugins>
Matthias Andreas Benkardbf4c3292021-07-25 16:44:10 +020033
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020034 <plugin>
35 <groupId>io.quarkus</groupId>
36 <artifactId>quarkus-bootstrap-maven-plugin</artifactId>
37 <version>${quarkus.version}</version>
38 <executions>
39 <execution>
40 <phase>compile</phase>
41 <goals>
42 <goal>extension-descriptor</goal>
43 </goals>
44 <configuration>
45 <deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment>
46 </configuration>
47 </execution>
48 </executions>
49 </plugin>
Matthias Andreas Benkardbf4c3292021-07-25 16:44:10 +020050
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020051 <plugin>
52 <artifactId>maven-compiler-plugin</artifactId>
53 <configuration>
54 <annotationProcessorPaths>
55 <path>
56 <groupId>io.quarkus</groupId>
57 <artifactId>quarkus-extension-processor</artifactId>
58 <version>${quarkus.version}</version>
59 </path>
60 </annotationProcessorPaths>
61 </configuration>
62 </plugin>
Matthias Andreas Benkardbf4c3292021-07-25 16:44:10 +020063
64 <plugin>
65 <artifactId>maven-jar-plugin</artifactId>
66 <version>${jar-plugin.version}</version>
67 <configuration>
68 <archive>
69 <manifestEntries>
70 <Automatic-Module-Name>eu.mulk.quarkus.googlecloud.jsonlogging</Automatic-Module-Name>
71 </manifestEntries>
72 </archive>
73 </configuration>
74 </plugin>
75
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020076 </plugins>
Matthias Andreas Benkardbf4c3292021-07-25 16:44:10 +020077
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020078 </build>
79
80</project>