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.0.6</version>
|
---|
9 | <relativePath/> <!-- lookup parent from repository -->
|
---|
10 | </parent>
|
---|
11 | <groupId>com.example</groupId>
|
---|
12 | <artifactId>tourMate</artifactId>
|
---|
13 | <version>0.0.1-SNAPSHOT</version>
|
---|
14 | <packaging>war</packaging>
|
---|
15 | <name>TourMate</name>
|
---|
16 | <description>Апликација за организирање патувања низ Македонија</description>
|
---|
17 | <properties>
|
---|
18 | <java.version>17</java.version>
|
---|
19 | </properties>
|
---|
20 | <dependencies>
|
---|
21 | <dependency>
|
---|
22 | <groupId>org.springframework.boot</groupId>
|
---|
23 | <artifactId>spring-boot-starter-oauth2-client</artifactId>
|
---|
24 | </dependency>
|
---|
25 | <dependency>
|
---|
26 | <groupId>org.springframework.boot</groupId>
|
---|
27 | <artifactId>spring-boot-starter-mail</artifactId>
|
---|
28 | </dependency>
|
---|
29 | <dependency>
|
---|
30 | <groupId>org.springframework.boot</groupId>
|
---|
31 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
---|
32 | </dependency>
|
---|
33 | <dependency>
|
---|
34 | <groupId>org.springframework.boot</groupId>
|
---|
35 | <artifactId>spring-boot-starter-data-rest</artifactId>
|
---|
36 | </dependency>
|
---|
37 | <dependency>
|
---|
38 | <groupId>javax.validation</groupId>
|
---|
39 | <artifactId>validation-api</artifactId>
|
---|
40 | <version>2.0.1.Final</version>
|
---|
41 | </dependency>
|
---|
42 | <dependency>
|
---|
43 | <groupId>org.springframework.boot</groupId>
|
---|
44 | <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
---|
45 | </dependency>
|
---|
46 | <dependency>
|
---|
47 | <groupId>org.springframework.boot</groupId>
|
---|
48 | <artifactId>spring-boot-starter-web</artifactId>
|
---|
49 | </dependency>
|
---|
50 |
|
---|
51 | <dependency>
|
---|
52 | <groupId>org.springframework.boot</groupId>
|
---|
53 | <artifactId>spring-boot-devtools</artifactId>
|
---|
54 | <scope>runtime</scope>
|
---|
55 | <optional>true</optional>
|
---|
56 | </dependency>
|
---|
57 | <dependency>
|
---|
58 | <groupId>org.postgresql</groupId>
|
---|
59 | <artifactId>postgresql</artifactId>
|
---|
60 | <scope>runtime</scope>
|
---|
61 | </dependency>
|
---|
62 | <dependency>
|
---|
63 | <groupId>org.springframework.boot</groupId>
|
---|
64 | <artifactId>spring-boot-starter-tomcat</artifactId>
|
---|
65 | <scope>provided</scope>
|
---|
66 | </dependency>
|
---|
67 | <dependency>
|
---|
68 | <groupId>org.springframework.boot</groupId>
|
---|
69 | <artifactId>spring-boot-starter-test</artifactId>
|
---|
70 | <scope>test</scope>
|
---|
71 | </dependency>
|
---|
72 | <dependency>
|
---|
73 | <groupId>org.jetbrains</groupId>
|
---|
74 | <artifactId>annotations</artifactId>
|
---|
75 | <version>RELEASE</version>
|
---|
76 | <scope>compile</scope>
|
---|
77 | </dependency>
|
---|
78 | <dependency>
|
---|
79 | <groupId>org.projectlombok</groupId>
|
---|
80 | <artifactId>lombok</artifactId>
|
---|
81 | </dependency>
|
---|
82 | <dependency>
|
---|
83 | <groupId>org.springframework.boot</groupId>
|
---|
84 | <artifactId>spring-boot-starter-security</artifactId>
|
---|
85 | </dependency>
|
---|
86 | <dependency>
|
---|
87 | <groupId>com.auth0</groupId>
|
---|
88 | <artifactId>java-jwt</artifactId>
|
---|
89 | <version>4.4.0</version>
|
---|
90 | </dependency>
|
---|
91 | <dependency>
|
---|
92 | <groupId>javax.servlet</groupId>
|
---|
93 | <artifactId>servlet-api</artifactId>
|
---|
94 | <version>2.4</version>
|
---|
95 | <scope>provided</scope>
|
---|
96 | </dependency>
|
---|
97 | <!-- <dependency>-->
|
---|
98 | <!-- <groupId>org.thymeleaf.extras</groupId>-->
|
---|
99 | <!-- <artifactId>thymeleaf-extras-springsecurity6</artifactId>-->
|
---|
100 | <!-- <version>3.1.1.RELEASE</version>-->
|
---|
101 | <!-- </dependency>-->
|
---|
102 | <dependency>
|
---|
103 | <groupId>org.springframework.security</groupId>
|
---|
104 | <artifactId>spring-security-test</artifactId>
|
---|
105 | <scope>test</scope>
|
---|
106 | </dependency>
|
---|
107 | </dependencies>
|
---|
108 |
|
---|
109 | <build>
|
---|
110 | <plugins>
|
---|
111 | <plugin>
|
---|
112 | <groupId>org.springframework.boot</groupId>
|
---|
113 | <artifactId>spring-boot-maven-plugin</artifactId>
|
---|
114 | </plugin>
|
---|
115 | </plugins>
|
---|
116 | </build>
|
---|
117 |
|
---|
118 | </project>
|
---|