blob: ac576cc2d021a1bca85ae9c6037c258ec9e63cce [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 Benkard9a497872021-05-18 21:53:37 +020010 <version>1.0.2-SNAPSHOT</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 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>
Matthias Andreas Benkardbf4c3292021-07-25 16:44:10 +020029
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020030 <plugin>
31 <groupId>io.quarkus</groupId>
32 <artifactId>quarkus-bootstrap-maven-plugin</artifactId>
33 <version>${quarkus.version}</version>
34 <executions>
35 <execution>
36 <phase>compile</phase>
37 <goals>
38 <goal>extension-descriptor</goal>
39 </goals>
40 <configuration>
41 <deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment>
42 </configuration>
43 </execution>
44 </executions>
45 </plugin>
Matthias Andreas Benkardbf4c3292021-07-25 16:44:10 +020046
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020047 <plugin>
48 <artifactId>maven-compiler-plugin</artifactId>
49 <configuration>
50 <annotationProcessorPaths>
51 <path>
52 <groupId>io.quarkus</groupId>
53 <artifactId>quarkus-extension-processor</artifactId>
54 <version>${quarkus.version}</version>
55 </path>
56 </annotationProcessorPaths>
57 </configuration>
58 </plugin>
Matthias Andreas Benkardbf4c3292021-07-25 16:44:10 +020059
60 <plugin>
61 <artifactId>maven-jar-plugin</artifactId>
62 <version>${jar-plugin.version}</version>
63 <configuration>
64 <archive>
65 <manifestEntries>
66 <Automatic-Module-Name>eu.mulk.quarkus.googlecloud.jsonlogging</Automatic-Module-Name>
67 </manifestEntries>
68 </archive>
69 </configuration>
70 </plugin>
71
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020072 </plugins>
Matthias Andreas Benkardbf4c3292021-07-25 16:44:10 +020073
Matthias Andreas Benkardc8144a92021-05-03 08:04:53 +020074 </build>
75
76</project>