source: ReserveNGo-backend/pom.xml

Last change on this file was 349551d, checked in by ivanov1332 <zareivanov070@…>, 30 hours ago

Fixed lombok,optimized DTOs

  • Property mode set to 100644
File size: 4.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.springframework.boot</groupId>
7 <artifactId>spring-boot-starter-parent</artifactId>
8 <version>3.4.3</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>mk.ukim.finki.it</groupId>
12 <artifactId>ReserveNGo</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>ReserveNGo</name>
15 <description>ReserveNGo</description>
16 <url/>
17 <licenses>
18 <license/>
19 </licenses>
20 <developers>
21 <developer/>
22 </developers>
23 <scm>
24 <connection/>
25 <developerConnection/>
26 <tag/>
27 <url/>
28 </scm>
29 <properties>
30 <java.version>21</java.version>
31 </properties>
32 <dependencies>
33
34 <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
35 <dependency>
36 <groupId>org.projectlombok</groupId>
37 <artifactId>lombok</artifactId>
38 <version>1.18.36</version>
39 <scope>provided</scope>
40 </dependency>
41
42 <dependency>
43 <groupId>org.springframework.boot</groupId>
44 <artifactId>spring-boot-starter-web</artifactId>
45 </dependency>
46
47 <dependency>
48 <groupId>org.springframework.boot</groupId>
49 <artifactId>spring-boot-starter-data-jpa</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>org.springframework.boot</groupId>
54 <artifactId>spring-boot-starter-security</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>org.postgresql</groupId>
59 <artifactId>postgresql</artifactId>
60 <scope>runtime</scope>
61 </dependency>
62
63 <dependency>
64 <groupId>io.jsonwebtoken</groupId>
65 <artifactId>jjwt-api</artifactId>
66 <version>0.11.5</version>
67 </dependency>
68
69 <dependency>
70 <groupId>io.jsonwebtoken</groupId>
71 <artifactId>jjwt-impl</artifactId>
72 <version>0.11.5</version>
73 </dependency>
74
75 <dependency>
76 <groupId>io.jsonwebtoken</groupId>
77 <artifactId>jjwt-jackson</artifactId>
78 <version>0.11.5</version>
79 </dependency>
80
81 <dependency>
82 <groupId>com.h2database</groupId>
83 <artifactId>h2</artifactId>
84 </dependency>
85
86 <dependency>
87 <groupId>org.springframework.boot</groupId>
88 <artifactId>spring-boot-starter-test</artifactId>
89 <scope>test</scope>
90 </dependency>
91
92 <dependency>
93 <groupId>org.springframework.security</groupId>
94 <artifactId>spring-security-test</artifactId>
95 <scope>test</scope>
96 </dependency>
97 </dependencies>
98
99 <build>
100 <plugins>
101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-compiler-plugin</artifactId>
104 <configuration>
105 <annotationProcessorPaths>
106 <path>
107 <groupId>org.projectlombok</groupId>
108 <artifactId>lombok</artifactId>
109 <version>1.18.36</version>
110 </path>
111 </annotationProcessorPaths>
112 </configuration>
113 </plugin>
114 <plugin>
115 <groupId>org.springframework.boot</groupId>
116 <artifactId>spring-boot-maven-plugin</artifactId>
117 <configuration>
118 <excludes>
119 <exclude>
120 <groupId>org.projectlombok</groupId>
121 <artifactId>lombok</artifactId>
122 </exclude>
123 </excludes>
124 </configuration>
125 </plugin>
126 </plugins>
127 </build>
128
129</project>
Note: See TracBrowser for help on using the repository browser.