1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+ <parent >
7
+ <groupId >com.github.piomin</groupId >
8
+ <artifactId >spring-boot-logging</artifactId >
9
+ <version >2.0.3</version >
10
+ </parent >
11
+
12
+ <groupId >pl.piomin</groupId >
13
+ <artifactId >logging-spring-commons</artifactId >
14
+
15
+ <dependencies >
16
+ <dependency >
17
+ <groupId >org.springframework</groupId >
18
+ <artifactId >spring-web</artifactId >
19
+ <version >${spring.version} </version >
20
+ <scope >provided</scope >
21
+ </dependency >
22
+ <dependency >
23
+ <groupId >jakarta.servlet</groupId >
24
+ <artifactId >jakarta.servlet-api</artifactId >
25
+ <version >${jakarta-servlet.version} </version >
26
+ <scope >provided</scope >
27
+ </dependency >
28
+ <dependency >
29
+ <groupId >commons-io</groupId >
30
+ <artifactId >commons-io</artifactId >
31
+ <version >${commons-io.version} </version >
32
+ </dependency >
33
+ <dependency >
34
+ <groupId >org.slf4j</groupId >
35
+ <artifactId >slf4j-api</artifactId >
36
+ <version >${slf4j.version} </version >
37
+ </dependency >
38
+ </dependencies >
39
+
40
+ <build >
41
+ <plugins >
42
+ <plugin >
43
+ <groupId >org.apache.maven.plugins</groupId >
44
+ <artifactId >maven-compiler-plugin</artifactId >
45
+ <version >3.13.0</version >
46
+ <configuration >
47
+ <target >${java.version} </target >
48
+ <source >${java.version} </source >
49
+ <encoding >UTF-8</encoding >
50
+ </configuration >
51
+ </plugin >
52
+ </plugins >
53
+ </build >
54
+
55
+ <profiles >
56
+ <profile >
57
+ <id >release</id >
58
+ <build >
59
+ <plugins >
60
+ <plugin >
61
+ <groupId >org.apache.maven.plugins</groupId >
62
+ <artifactId >maven-gpg-plugin</artifactId >
63
+ <version >3.2.1</version >
64
+ <executions >
65
+ <execution >
66
+ <id >sign-artifacts</id >
67
+ <phase >verify</phase >
68
+ <goals >
69
+ <goal >sign</goal >
70
+ </goals >
71
+ </execution >
72
+ </executions >
73
+ </plugin >
74
+ <plugin >
75
+ <groupId >org.apache.maven.plugins</groupId >
76
+ <artifactId >maven-source-plugin</artifactId >
77
+ <version >3.3.0</version >
78
+ <executions >
79
+ <execution >
80
+ <id >attach-sources</id >
81
+ <goals >
82
+ <goal >jar-no-fork</goal >
83
+ </goals >
84
+ </execution >
85
+ </executions >
86
+ </plugin >
87
+ <plugin >
88
+ <groupId >org.apache.maven.plugins</groupId >
89
+ <artifactId >maven-javadoc-plugin</artifactId >
90
+ <version >3.6.3</version >
91
+ <executions >
92
+ <execution >
93
+ <id >attach-javadocs</id >
94
+ <goals >
95
+ <goal >jar</goal >
96
+ </goals >
97
+ </execution >
98
+ </executions >
99
+ </plugin >
100
+ </plugins >
101
+ </build >
102
+ </profile >
103
+ </profiles >
104
+
105
+ </project >
0 commit comments