source: pom.xml@ 5a9c93b

main
Last change on this file since 5a9c93b was 5a9c93b, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Authorization layer

  • Property mode set to 100644
File size: 3.6 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.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>
55 <groupId>org.thymeleaf.extras</groupId>
56 <artifactId>thymeleaf-extras-springsecurity6</artifactId>
57 <version>3.1.1.RELEASE</version>
58 </dependency>
59 <dependency>
60 <groupId>org.springframework.security</groupId>
61 <artifactId>spring-security-test</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.springframework.boot</groupId>
66 <artifactId>spring-boot-starter-test</artifactId>
67 <version>3.2.1</version>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>io.jsonwebtoken</groupId>
72 <artifactId>jjwt</artifactId>
73 <version>0.9.1</version>
74 </dependency>
75 <dependency>
76 <groupId>junit</groupId>
77 <artifactId>junit</artifactId>
78 <version>4.13.2</version>
79 </dependency>
80 <dependency>
81 <groupId>org.mockito</groupId>
82 <artifactId>mockito-all</artifactId>
83 <version>1.9.5</version>
84 <scope>test</scope>
85 </dependency>
86
87 <dependency>
88 <groupId>org.seleniumhq.selenium</groupId>
89 <artifactId>selenium-java</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.seleniumhq.selenium</groupId>
93 <artifactId>htmlunit-driver</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>org.springframework.boot</groupId>
97 <artifactId>spring-boot-starter-data-rest</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>org.mapstruct</groupId>
101 <artifactId>mapstruct</artifactId>
102 <version>1.4.2.Final</version> <!-- Replace with the latest version -->
103 </dependency>
104
105 <dependency>
106 <groupId>com.auth0</groupId>
107 <artifactId>java-jwt</artifactId>
108 <version>4.3.0</version>
109 </dependency>
110 </dependencies>
111
112 <build>
113 <plugins>
114 <plugin>
115 <groupId>org.springframework.boot</groupId>
116 <artifactId>spring-boot-maven-plugin</artifactId>
117 </plugin>
118 <plugin>
119 <groupId>com.github.eirslett</groupId>
120 <artifactId>frontend-maven-plugin</artifactId>
121 </plugin>
122 </plugins>
123 </build>
124</project>
Note: See TracBrowser for help on using the repository browser.