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 | 3045065 | 2023-09-24 19:35:07 +0200 | [diff] [blame] | 17 | <version>6.1.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> |
Matthias Andreas Benkard | e957def | 2023-09-24 21:04:05 +0200 | [diff] [blame] | 27 | <version>1.1.1</version> |
Matthias Andreas Benkard | ddcce2e | 2023-09-24 12:57:37 +0200 | [diff] [blame] | 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.jboss.logmanager</groupId> |
| 31 | <artifactId>jboss-logmanager</artifactId> |
| 32 | <version>3.0.2.Final</version> |
| 33 | <optional>true</optional> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>io.smallrye.common</groupId> |
| 37 | <artifactId>smallrye-common-constraint</artifactId> |
Renovate Bot | 2f5f036 | 2023-09-24 19:02:56 +0000 | [diff] [blame] | 38 | <version>2.1.2</version> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 39 | </dependency> |
| 40 | <dependency> |
siddik.acil | ca9b929 | 2023-03-24 09:54:22 +0100 | [diff] [blame] | 41 | <groupId>org.eclipse.parsson</groupId> |
| 42 | <artifactId>parsson</artifactId> |
Renovate Bot | 2f5f036 | 2023-09-24 19:02:56 +0000 | [diff] [blame] | 43 | <version>1.1.4</version> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 44 | </dependency> |
| 45 | </dependencies> |
| 46 | |
| 47 | <build> |
| 48 | <plugins> |
| 49 | |
| 50 | <plugin> |
| 51 | <artifactId>maven-jar-plugin</artifactId> |
| 52 | <configuration> |
| 53 | <archive> |
| 54 | <manifestEntries> |
| 55 | <Automatic-Module-Name>eu.mulk.quarkus.googlecloud.jsonlogging.core</Automatic-Module-Name> |
| 56 | </manifestEntries> |
| 57 | </archive> |
| 58 | </configuration> |
| 59 | </plugin> |
| 60 | |
| 61 | </plugins> |
| 62 | </build> |
| 63 | |
| 64 | </project> |