source: ReserveNGo-backend/pom.xml@ 4446c6f

Last change on this file since 4446c6f was 4446c6f, checked in by Nikola Jordanoski <nikolaj_koko@…>, 3 months ago

Fixed Lombok, finished security (register & login), added listing locals

  • Property mode set to 100644
File size: 4.0 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.1</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 <dependency>
34 <groupId>org.projectlombok</groupId>
35 <artifactId>lombok</artifactId>
36 <version>1.18.30</version>
37 <scope>provided</scope>
38 </dependency>
39
40 <dependency>
41 <groupId>org.springframework.boot</groupId>
42 <artifactId>spring-boot-starter-web</artifactId>
43 </dependency>
44
45 <dependency>
46 <groupId>org.springframework.boot</groupId>
47 <artifactId>spring-boot-starter-data-jpa</artifactId>
48 </dependency>
49
50 <dependency>
51 <groupId>org.springframework.boot</groupId>
52 <artifactId>spring-boot-starter-security</artifactId>
53 </dependency>
54
55 <dependency>
56 <groupId>org.postgresql</groupId>
57 <artifactId>postgresql</artifactId>
58 <scope>runtime</scope>
59 </dependency>
60
61 <dependency>
62 <groupId>io.jsonwebtoken</groupId>
63 <artifactId>jjwt-api</artifactId>
64 <version>0.11.5</version>
65 </dependency>
66
67 <dependency>
68 <groupId>io.jsonwebtoken</groupId>
69 <artifactId>jjwt-impl</artifactId>
70 <version>0.11.5</version>
71 </dependency>
72
73 <dependency>
74 <groupId>io.jsonwebtoken</groupId>
75 <artifactId>jjwt-jackson</artifactId>
76 <version>0.11.5</version>
77 </dependency>
78
79 <dependency>
80 <groupId>com.h2database</groupId>
81 <artifactId>h2</artifactId>
82 </dependency>
83
84 <dependency>
85 <groupId>org.springframework.boot</groupId>
86 <artifactId>spring-boot-starter-test</artifactId>
87 <scope>test</scope>
88 </dependency>
89
90 <dependency>
91 <groupId>org.springframework.security</groupId>
92 <artifactId>spring-security-test</artifactId>
93 <scope>test</scope>
94 </dependency>
95 </dependencies>
96
97 <build>
98 <plugins>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-compiler-plugin</artifactId>
102 <configuration>
103 <annotationProcessorPaths>
104 <path>
105 <groupId>org.projectlombok</groupId>
106 <artifactId>lombok</artifactId>
107 </path>
108 </annotationProcessorPaths>
109 </configuration>
110 </plugin>
111 <plugin>
112 <groupId>org.springframework.boot</groupId>
113 <artifactId>spring-boot-maven-plugin</artifactId>
114 <configuration>
115 <excludes>
116 <exclude>
117 <groupId>org.projectlombok</groupId>
118 <artifactId>lombok</artifactId>
119 </exclude>
120 </excludes>
121 </configuration>
122 </plugin>
123 </plugins>
124 </build>
125
126</project>
Note: See TracBrowser for help on using the repository browser.