source: pom.xml

main
Last change on this file was deea3c4, checked in by Aleksandar Panovski <apano77@…>, 3 weeks ago

Big change done fully handle_reservation_update() trigger works

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[d24f17c]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.2.2</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.example.rezevirajmasa</groupId>
12 <artifactId>demo</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>demo</name>
15 <description>Demo project for Spring Boot</description>
16 <properties>
17 <java.version>21</java.version>
18 </properties>
19 <dependencies>
20 <dependency>
21 <groupId>org.springframework.boot</groupId>
22 <artifactId>spring-boot-starter-thymeleaf</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-web</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-data-jpa</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.projectlombok</groupId>
34 <artifactId>lombok</artifactId>
35 <optional>true</optional>
36 </dependency>
37 <dependency>
38 <groupId>com.h2database</groupId>
39 <artifactId>h2</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.postgresql</groupId>
43 <artifactId>postgresql</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.springframework.boot</groupId>
47 <artifactId>spring-boot-starter-security</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>io.jsonwebtoken</groupId>
51 <artifactId>jjwt</artifactId>
52 <version>0.9.1</version> <!-- Use the latest version available -->
53 </dependency>
54 <dependency>
[deea3c4]55 <groupId>org.modelmapper</groupId>
56 <artifactId>modelmapper</artifactId>
57 <version>3.1.0</version> <!-- Check for the latest version -->
58 </dependency>
59
60 <dependency>
[d24f17c]61 <groupId>org.thymeleaf.extras</groupId>
62 <artifactId>thymeleaf-extras-springsecurity6</artifactId>
63 <version>3.1.1.RELEASE</version>
64 </dependency>
65 <dependency>
66 <groupId>org.springframework.security</groupId>
67 <artifactId>spring-security-test</artifactId>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.springframework.boot</groupId>
72 <artifactId>spring-boot-starter-test</artifactId>
73 <version>3.2.1</version>
74 <scope>test</scope>
75 </dependency>
[24819a8]76 <dependency>
77 <groupId>io.jsonwebtoken</groupId>
78 <artifactId>jjwt</artifactId>
79 <version>0.9.1</version>
80 </dependency>
[d24f17c]81 <dependency>
82 <groupId>junit</groupId>
83 <artifactId>junit</artifactId>
84 <version>4.13.2</version>
85 </dependency>
86 <dependency>
87 <groupId>org.mockito</groupId>
88 <artifactId>mockito-all</artifactId>
89 <version>1.9.5</version>
90 <scope>test</scope>
91 </dependency>
92
93 <dependency>
94 <groupId>org.seleniumhq.selenium</groupId>
95 <artifactId>selenium-java</artifactId>
96 </dependency>
97 <dependency>
98 <groupId>org.seleniumhq.selenium</groupId>
99 <artifactId>htmlunit-driver</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>org.springframework.boot</groupId>
103 <artifactId>spring-boot-starter-data-rest</artifactId>
104 </dependency>
[24819a8]105 <dependency>
106 <groupId>org.mapstruct</groupId>
[5a9c93b]107 <artifactId>mapstruct</artifactId>
108 <version>1.4.2.Final</version> <!-- Replace with the latest version -->
109 </dependency>
110
111 <dependency>
112 <groupId>com.auth0</groupId>
113 <artifactId>java-jwt</artifactId>
114 <version>4.3.0</version>
[24819a8]115 </dependency>
[8ca35dc]116
117 <dependency>
118 <groupId>javax.xml.bind</groupId>
119 <artifactId>jaxb-api</artifactId>
120 <version>2.3.1</version>
121 </dependency>
122
[d24f17c]123 </dependencies>
124
125 <build>
126 <plugins>
127 <plugin>
128 <groupId>org.springframework.boot</groupId>
129 <artifactId>spring-boot-maven-plugin</artifactId>
130 </plugin>
131 <plugin>
132 <groupId>com.github.eirslett</groupId>
133 <artifactId>frontend-maven-plugin</artifactId>
134 </plugin>
135 </plugins>
136 </build>
137</project>
Note: See TracBrowser for help on using the repository browser.