blob: 20713c233e3e8d814b7c0826344536dac22ef7b5 [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>
siddik.acil21805f62023-03-24 08:58:35 +010017 <version>6.0.0-SNAPSHOT</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>
siddik.acilca9b9292023-03-24 09:54:22 +010033 <groupId>org.eclipse.parsson</groupId>
34 <artifactId>parsson</artifactId>
Matthias Andreas Benkard20210242022-01-15 10:39:30 +010035 </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>