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 >ru.practicum</groupId >
8
+ <artifactId >explore-with-me-stats</artifactId >
9
+ <version >0.0.1-SNAPSHOT</version >
10
+ </parent >
11
+
12
+ <name >Stat server</name >
13
+
14
+ <artifactId >explore-with-me-stats-service</artifactId >
15
+ <version >0.0.1-SNAPSHOT</version >
16
+
17
+ <dependencies >
18
+ <dependency >
19
+ <groupId >org.springframework.boot</groupId >
20
+ <artifactId >spring-boot-starter-web</artifactId >
21
+ </dependency >
22
+ <dependency >
23
+ <groupId >org.springframework.boot</groupId >
24
+ <artifactId >spring-boot-starter-actuator</artifactId >
25
+ </dependency >
26
+ <dependency >
27
+ <groupId >org.springframework.boot</groupId >
28
+ <artifactId >spring-boot-starter-validation</artifactId >
29
+ </dependency >
30
+ <dependency >
31
+ <groupId >org.postgresql</groupId >
32
+ <artifactId >postgresql</artifactId >
33
+ <scope >runtime</scope >
34
+ </dependency >
35
+ <dependency >
36
+ <groupId >com.h2database</groupId >
37
+ <artifactId >h2</artifactId >
38
+ <scope >runtime</scope >
39
+ </dependency >
40
+ <dependency >
41
+ <groupId >org.springframework.boot</groupId >
42
+ <artifactId >spring-boot-configuration-processor</artifactId >
43
+ <optional >true</optional >
44
+ </dependency >
45
+ <dependency >
46
+ <groupId >org.springframework.boot</groupId >
47
+ <artifactId >spring-boot-starter-test</artifactId >
48
+ <scope >test</scope >
49
+ </dependency >
50
+ <dependency >
51
+ <groupId >org.springframework.boot</groupId >
52
+ <artifactId >spring-boot-starter-data-jpa</artifactId >
53
+ </dependency >
54
+ <dependency >
55
+ <groupId >org.mapstruct</groupId >
56
+ <artifactId >mapstruct</artifactId >
57
+ </dependency >
58
+ <dependency >
59
+ <groupId >org.projectlombok</groupId >
60
+ <artifactId >lombok</artifactId >
61
+ <optional >true</optional >
62
+ </dependency >
63
+ <dependency >
64
+ <groupId >org.projectlombok</groupId >
65
+ <artifactId >lombok-mapstruct-binding</artifactId >
66
+ <scope >provided</scope >
67
+ </dependency >
68
+ <dependency >
69
+ <groupId >ru.practicum</groupId >
70
+ <artifactId >explore-with-me-stats-dto</artifactId >
71
+ <version >0.0.1-SNAPSHOT</version >
72
+ <scope >compile</scope >
73
+ </dependency >
74
+ </dependencies >
75
+
76
+ <build >
77
+ <plugins >
78
+ <plugin >
79
+ <groupId >org.springframework.boot</groupId >
80
+ <artifactId >spring-boot-maven-plugin</artifactId >
81
+ <configuration >
82
+ <excludes >
83
+ <exclude >
84
+ <groupId >org.projectlombok</groupId >
85
+ <artifactId >lombok</artifactId >
86
+ </exclude >
87
+ </excludes >
88
+ </configuration >
89
+ </plugin >
90
+ <plugin >
91
+ <groupId >org.apache.maven.plugins</groupId >
92
+ <artifactId >maven-compiler-plugin</artifactId >
93
+ <version >3.11.0</version >
94
+ <configuration >
95
+ <annotationProcessorPaths >
96
+ <path >
97
+ <groupId >org.projectlombok</groupId >
98
+ <artifactId >lombok</artifactId >
99
+ <version >1.18.32</version >
100
+ </path >
101
+ <path >
102
+ <groupId >org.projectlombok</groupId >
103
+ <artifactId >lombok-mapstruct-binding</artifactId >
104
+ <version >0.2.0</version >
105
+ </path >
106
+ <path >
107
+ <groupId >org.mapstruct</groupId >
108
+ <artifactId >mapstruct-processor</artifactId >
109
+ <version >1.6.0.Beta2</version >
110
+ </path >
111
+ </annotationProcessorPaths >
112
+ </configuration >
113
+ </plugin >
114
+ </plugins >
115
+ </build >
116
+
117
+ </project >
0 commit comments