blob: 022fba509693bc53309483f4d5b756f3c0eb7f38 [file] [log] [blame]
Matthias Andreas Benkard20210242022-01-15 10:39:30 +01001<?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 Benkard20210242022-01-15 10:39:30 +01009<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 Benkarde1b76f22022-02-16 07:53:55 +010017 <version>4.0.1</version>
Matthias Andreas Benkard20210242022-01-15 10:39:30 +010018 </parent>
19
20 <artifactId>quarkus-googlecloud-jsonlogging-core</artifactId>
21 <name>Quarkus Google Cloud JSON Logging Extension - JBoss Logging Core</name>
22
23 <dependencies>
24 <dependency>
25 <groupId>org.jboss.logmanager</groupId>
26 <artifactId>jboss-logmanager-embedded</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>io.smallrye.common</groupId>
30 <artifactId>smallrye-common-constraint</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.glassfish</groupId>
34 <artifactId>jakarta.json</artifactId>
35 </dependency>
36 </dependencies>
37
38 <build>
39 <plugins>
40
41 <plugin>
42 <artifactId>maven-jar-plugin</artifactId>
43 <configuration>
44 <archive>
45 <manifestEntries>
46 <Automatic-Module-Name>eu.mulk.quarkus.googlecloud.jsonlogging.core</Automatic-Module-Name>
47 </manifestEntries>
48 </archive>
49 </configuration>
50 </plugin>
51
52 </plugins>
53 </build>
54
55</project>