blob: 86656ae598f21002288d3fe505d74120fa549dc3 [file] [log] [blame]
Matthias Andreas Benkard20210242022-01-15 10:39:30 +01001<?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>
8 <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId>
9 <artifactId>quarkus-googlecloud-jsonlogging-parent</artifactId>
10 <version>3.1.4-SNAPSHOT</version>
11 </parent>
12
13 <artifactId>quarkus-googlecloud-jsonlogging-core</artifactId>
14 <name>Quarkus Google Cloud JSON Logging Extension - JBoss Logging Core</name>
15
16 <dependencies>
17 <dependency>
18 <groupId>org.jboss.logmanager</groupId>
19 <artifactId>jboss-logmanager-embedded</artifactId>
20 </dependency>
21 <dependency>
22 <groupId>io.smallrye.common</groupId>
23 <artifactId>smallrye-common-constraint</artifactId>
24 </dependency>
25 <dependency>
26 <groupId>org.glassfish</groupId>
27 <artifactId>jakarta.json</artifactId>
28 </dependency>
29 </dependencies>
30
31 <build>
32 <plugins>
33
34 <plugin>
35 <artifactId>maven-jar-plugin</artifactId>
36 <configuration>
37 <archive>
38 <manifestEntries>
39 <Automatic-Module-Name>eu.mulk.quarkus.googlecloud.jsonlogging.core</Automatic-Module-Name>
40 </manifestEntries>
41 </archive>
42 </configuration>
43 </plugin>
44
45 </plugins>
46 </build>
47
48</project>