Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Matthias Andreas Benkard | 8090924 | 2022-02-03 20:47:47 +0100 | [diff] [blame] | 2 | |
| 3 | <!-- |
| 4 | SPDX-FileCopyrightText: © 2021 Matthias Andreas Benkard <code@mail.matthias.benkard.de> |
| 5 | |
| 6 | SPDX-License-Identifier: LGPL-3.0-or-later |
| 7 | --> |
| 8 | |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 9 | <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 Benkard | d082a11 | 2023-03-24 11:07:05 +0100 | [diff] [blame] | 17 | <version>6.0.1-SNAPSHOT</version> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 18 | </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.acil | ca9b929 | 2023-03-24 09:54:22 +0100 | [diff] [blame] | 33 | <groupId>org.eclipse.parsson</groupId> |
| 34 | <artifactId>parsson</artifactId> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 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> |