blob: a6dbb316a9c77ccde86f303275af162de847dddf [file] [log] [blame]
Matthias Andreas Benkard348f2052022-01-15 16:13:01 +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: GPL-3.0-or-later
7-->
8
Matthias Andreas Benkard348f2052022-01-15 16:13:01 +01009<project
10 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
11 xmlns="http://maven.apache.org/POM/4.0.0"
12 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
13
14 <modelVersion>4.0.0</modelVersion>
15
16 <parent>
17 <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId>
18 <artifactId>quarkus-googlecloud-jsonlogging-parent</artifactId>
Matthias Andreas Benkardf95c4082022-01-15 21:16:22 +010019 <version>4.0.0</version>
Matthias Andreas Benkard348f2052022-01-15 16:13:01 +010020 </parent>
21
22 <artifactId>quarkus-googlecloud-jsonlogging-spring-boot-example</artifactId>
23 <name>Quarkus Google Cloud JSON Logging Extension - Spring Boot Example</name>
24
25 <dependencyManagement>
26 <dependencies>
27 <dependency>
28 <groupId>org.springframework.boot</groupId>
29 <artifactId>spring-boot-dependencies</artifactId>
30 <version>2.6.2</version>
31 <type>pom</type>
32 <scope>import</scope>
33 </dependency>
34 </dependencies>
35 </dependencyManagement>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.jboss.slf4j</groupId>
40 <artifactId>slf4j-jboss-logmanager</artifactId>
41 <version>1.1.0.Final</version>
42 </dependency>
43 <!-- *** optional ***
44 <dependency>
45 <groupId>org.jboss.logmanager</groupId>
46 <artifactId>log4j2-jboss-logmanager</artifactId>
47 <version>1.0.0.Final</version>
48 </dependency>
49 -->
50 <!-- *** optional ***
51 <dependency>
52 <groupId>org.jboss.logmanager</groupId>
53 <artifactId>log4j-jboss-logmanager</artifactId>
54 <version>1.2.2.Final</version>
55 </dependency>
56 -->
57 <!-- *** optional ***
58 <dependency>
59 <groupId>org.slf4j</groupId>
60 <artifactId>jcl-over-slf4j</artifactId>
61 </dependency>
62 -->
63 <dependency>
64 <groupId>org.springframework.boot</groupId>
65 <artifactId>spring-boot-starter-web</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.springframework.boot</groupId>
69 <artifactId>spring-boot-starter</artifactId>
70 <exclusions>
71 <exclusion>
72 <groupId>ch.qos.logback</groupId>
73 <artifactId>logback-classic</artifactId>
74 </exclusion>
75 <!--
76 <exclusion>
77 <groupId>org.springframework.boot</groupId>
78 <artifactId>spring-boot-starter-logging</artifactId>
79 </exclusion>
80 -->
81 </exclusions>
82 </dependency>
83 <dependency>
84 <groupId>eu.mulk.quarkus-googlecloud-jsonlogging</groupId>
85 <artifactId>quarkus-googlecloud-jsonlogging-core</artifactId>
86 <version>${project.version}</version>
87 </dependency>
88 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.springframework.boot</groupId>
94 <artifactId>spring-boot-maven-plugin</artifactId>
95 <version>2.6.2</version>
96 </plugin>
97 </plugins>
98 </build>
99
100</project>