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 | e9df298 | 2024-06-23 17:42:44 +0200 | [diff] [blame^] | 17 | <version>6.2.0</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> |
Renovate Bot | c875905 | 2024-04-30 21:03:59 +0000 | [diff] [blame] | 32 | <version>3.0.6.Final</version> |
Matthias Andreas Benkard | ddcce2e | 2023-09-24 12:57:37 +0200 | [diff] [blame] | 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 | 2faa870 | 2024-04-03 20:05:10 +0000 | [diff] [blame] | 38 | <version>2.4.0</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 | 516ab6a | 2024-04-05 14:04:21 +0000 | [diff] [blame] | 43 | <version>1.1.6</version> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 44 | </dependency> |
Matthias Andreas Benkard | b69b301 | 2024-06-23 15:48:49 +0200 | [diff] [blame] | 45 | |
| 46 | <dependency> |
| 47 | <groupId>org.junit.jupiter</groupId> |
| 48 | <artifactId>junit-jupiter-engine</artifactId> |
| 49 | <version>5.10.2</version> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.junit.jupiter</groupId> |
| 54 | <artifactId>junit-jupiter-api</artifactId> |
| 55 | <version>5.10.2</version> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
Matthias Andreas Benkard | 47df8be | 2024-06-23 16:24:11 +0200 | [diff] [blame] | 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.openjdk.jmh</groupId> |
| 61 | <artifactId>jmh-core</artifactId> |
| 62 | <version>1.35</version> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.openjdk.jmh</groupId> |
| 67 | <artifactId>jmh-generator-annprocess</artifactId> |
| 68 | <version>1.35</version> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 71 | </dependencies> |
| 72 | |
| 73 | <build> |
| 74 | <plugins> |
| 75 | |
| 76 | <plugin> |
Matthias Andreas Benkard | 47df8be | 2024-06-23 16:24:11 +0200 | [diff] [blame] | 77 | <artifactId>maven-compiler-plugin</artifactId> |
| 78 | <configuration> |
| 79 | <annotationProcessorPaths> |
| 80 | <path> |
| 81 | <groupId>org.openjdk.jmh</groupId> |
| 82 | <artifactId>jmh-generator-annprocess</artifactId> |
| 83 | <version>1.35</version> |
| 84 | </path> |
| 85 | </annotationProcessorPaths> |
| 86 | </configuration> |
| 87 | </plugin> |
| 88 | |
| 89 | <plugin> |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 90 | <artifactId>maven-jar-plugin</artifactId> |
| 91 | <configuration> |
| 92 | <archive> |
| 93 | <manifestEntries> |
| 94 | <Automatic-Module-Name>eu.mulk.quarkus.googlecloud.jsonlogging.core</Automatic-Module-Name> |
| 95 | </manifestEntries> |
| 96 | </archive> |
| 97 | </configuration> |
| 98 | </plugin> |
| 99 | |
Matthias Andreas Benkard | b69b301 | 2024-06-23 15:48:49 +0200 | [diff] [blame] | 100 | <plugin> |
| 101 | <artifactId>maven-surefire-plugin</artifactId> |
Matthias Andreas Benkard | b69b301 | 2024-06-23 15:48:49 +0200 | [diff] [blame] | 102 | </plugin> |
| 103 | |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 104 | </plugins> |
| 105 | </build> |
| 106 | |
Matthias Andreas Benkard | 47df8be | 2024-06-23 16:24:11 +0200 | [diff] [blame] | 107 | <profiles> |
| 108 | |
| 109 | <profile> |
| 110 | <id>benchmark</id> |
| 111 | |
| 112 | <build> |
| 113 | <plugins> |
| 114 | |
| 115 | <plugin> |
| 116 | <artifactId>maven-surefire-plugin</artifactId> |
| 117 | <configuration> |
| 118 | <skipTests>true</skipTests> |
| 119 | </configuration> |
| 120 | </plugin> |
| 121 | |
| 122 | <plugin> |
| 123 | <groupId>org.codehaus.mojo</groupId> |
| 124 | <artifactId>exec-maven-plugin</artifactId> |
| 125 | <executions> |
| 126 | <execution> |
| 127 | <id>run-benchmarks</id> |
| 128 | <phase>integration-test</phase> |
| 129 | <goals> |
| 130 | <goal>exec</goal> |
| 131 | </goals> |
| 132 | <configuration> |
| 133 | <classpathScope>test</classpathScope> |
| 134 | <executable>java</executable> |
| 135 | <arguments> |
| 136 | <argument>-classpath</argument> |
| 137 | <classpath /> |
| 138 | <argument>org.openjdk.jmh.Main</argument> |
| 139 | <argument>.*</argument> |
| 140 | </arguments> |
| 141 | </configuration> |
| 142 | </execution> |
| 143 | </executions> |
| 144 | </plugin> |
| 145 | |
| 146 | </plugins> |
| 147 | </build> |
| 148 | </profile> |
| 149 | |
| 150 | </profiles> |
| 151 | |
Matthias Andreas Benkard | 2021024 | 2022-01-15 10:39:30 +0100 | [diff] [blame] | 152 | </project> |