source: backend/pom.xml

Last change on this file was 09e02d7, checked in by Nikola Sarafimov <sarafimov.nikola12345@…>, 3 days ago

Final room reservation system implementation

  • Property mode set to 100644
File size: 2.1 KB
Line 
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6 <modelVersion>4.0.0</modelVersion>
7
8 <parent>
9 <groupId>org.springframework.boot</groupId>
10 <artifactId>spring-boot-starter-parent</artifactId>
11 <version>3.3.5</version>
12 <relativePath/>
13 </parent>
14
15 <groupId>mk.finki</groupId>
16 <artifactId>room-reservation-backend</artifactId>
17 <version>1.0.0</version>
18 <name>room-reservation-backend</name>
19 <description>Room Reservation System backend</description>
20
21 <properties>
22 <java.version>21</java.version>
23 </properties>
24
25 <dependencies>
26 <dependency>
27 <groupId>org.springframework.security</groupId>
28 <artifactId>spring-security-crypto</artifactId>
29 </dependency>
30
31 <dependency>
32 <groupId>org.springframework.boot</groupId>
33 <artifactId>spring-boot-starter-web</artifactId>
34 </dependency>
35
36 <dependency>
37 <groupId>org.springframework.boot</groupId>
38 <artifactId>spring-boot-starter-jdbc</artifactId>
39 </dependency>
40
41 <dependency>
42 <groupId>org.springframework.boot</groupId>
43 <artifactId>spring-boot-starter-validation</artifactId>
44 </dependency>
45
46 <dependency>
47 <groupId>org.postgresql</groupId>
48 <artifactId>postgresql</artifactId>
49 <scope>runtime</scope>
50 </dependency>
51
52 <dependency>
53 <groupId>org.springframework.boot</groupId>
54 <artifactId>spring-boot-starter-test</artifactId>
55 <scope>test</scope>
56 </dependency>
57 </dependencies>
58
59 <build>
60 <finalName>room-reservation-backend</finalName>
61 <plugins>
62 <plugin>
63 <groupId>org.springframework.boot</groupId>
64 <artifactId>spring-boot-maven-plugin</artifactId>
65 </plugin>
66 </plugins>
67 </build>
68</project>
Note: See TracBrowser for help on using the repository browser.