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