blob: 62b19c67df5296f5f8aae72d866e8fe32d3f1875 [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>
Matthias Andreas Benkard7cfbcdb2024-06-23 18:20:12 +020017 <version>6.2.1-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>
Matthias Andreas Benkarde957def2023-09-24 21:04:05 +020027 <version>1.1.1</version>
Matthias Andreas Benkardddcce2e2023-09-24 12:57:37 +020028 </dependency>
29 <dependency>
30 <groupId>org.jboss.logmanager</groupId>
31 <artifactId>jboss-logmanager</artifactId>
Renovate Botc8759052024-04-30 21:03:59 +000032 <version>3.0.6.Final</version>
Matthias Andreas Benkardddcce2e2023-09-24 12:57:37 +020033 <optional>true</optional>
Matthias Andreas Benkard20210242022-01-15 10:39:30 +010034 </dependency>
35 <dependency>
36 <groupId>io.smallrye.common</groupId>
37 <artifactId>smallrye-common-constraint</artifactId>
Renovate Bot2faa8702024-04-03 20:05:10 +000038 <version>2.4.0</version>
Matthias Andreas Benkard20210242022-01-15 10:39:30 +010039 </dependency>
40 <dependency>
siddik.acilca9b9292023-03-24 09:54:22 +010041 <groupId>org.eclipse.parsson</groupId>
42 <artifactId>parsson</artifactId>
Renovate Bot516ab6a2024-04-05 14:04:21 +000043 <version>1.1.6</version>
Matthias Andreas Benkard20210242022-01-15 10:39:30 +010044 </dependency>
Matthias Andreas Benkardb69b3012024-06-23 15:48:49 +020045
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 Benkard47df8be2024-06-23 16:24:11 +020058
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 Benkard20210242022-01-15 10:39:30 +010071 </dependencies>
72
73 <build>
74 <plugins>
75
76 <plugin>
Matthias Andreas Benkard47df8be2024-06-23 16:24:11 +020077 <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 Benkard20210242022-01-15 10:39:30 +010090 <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 Benkardb69b3012024-06-23 15:48:49 +0200100 <plugin>
101 <artifactId>maven-surefire-plugin</artifactId>
Matthias Andreas Benkardb69b3012024-06-23 15:48:49 +0200102 </plugin>
103
Matthias Andreas Benkard20210242022-01-15 10:39:30 +0100104 </plugins>
105 </build>
106
Matthias Andreas Benkard47df8be2024-06-23 16:24:11 +0200107 <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 Benkard20210242022-01-15 10:39:30 +0100152</project>