source: pom.xml@ 07f4e8b

Last change on this file since 07f4e8b was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

images upload/download impl, other fixes

  • Property mode set to 100644
File size: 3.3 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.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-data-jpa</artifactId>
24 </dependency>
25 <dependency>
26 <groupId>org.springframework.boot</groupId>
27 <artifactId>spring-boot-starter-data-rest</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>javax.validation</groupId>
31 <artifactId>validation-api</artifactId>
32 <version>2.0.1.Final</version>
33 </dependency>
34 <dependency>
35 <groupId>org.springframework.boot</groupId>
36 <artifactId>spring-boot-starter-thymeleaf</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-starter-web</artifactId>
41 </dependency>
42
43 <dependency>
44 <groupId>org.springframework.boot</groupId>
45 <artifactId>spring-boot-devtools</artifactId>
46 <scope>runtime</scope>
47 <optional>true</optional>
48 </dependency>
49 <dependency>
50 <groupId>org.postgresql</groupId>
51 <artifactId>postgresql</artifactId>
52 <scope>runtime</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.springframework.boot</groupId>
56 <artifactId>spring-boot-starter-tomcat</artifactId>
57 <scope>provided</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.springframework.boot</groupId>
61 <artifactId>spring-boot-starter-test</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.jetbrains</groupId>
66 <artifactId>annotations</artifactId>
67 <version>RELEASE</version>
68 <scope>compile</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.projectlombok</groupId>
72 <artifactId>lombok</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.springframework.boot</groupId>
76 <artifactId>spring-boot-starter-security</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>com.auth0</groupId>
80 <artifactId>java-jwt</artifactId>
81 <version>4.4.0</version>
82 </dependency>
83 <dependency>
84 <groupId>javax.servlet</groupId>
85 <artifactId>servlet-api</artifactId>
86 <version>2.4</version>
87 <scope>provided</scope>
88 </dependency>
89<!-- <dependency>-->
90<!-- <groupId>org.thymeleaf.extras</groupId>-->
91<!-- <artifactId>thymeleaf-extras-springsecurity6</artifactId>-->
92<!-- <version>3.1.1.RELEASE</version>-->
93<!-- </dependency>-->
94 <dependency>
95 <groupId>org.springframework.security</groupId>
96 <artifactId>spring-security-test</artifactId>
97 <scope>test</scope>
98 </dependency>
99 </dependencies>
100
101 <build>
102 <plugins>
103 <plugin>
104 <groupId>org.springframework.boot</groupId>
105 <artifactId>spring-boot-maven-plugin</artifactId>
106 </plugin>
107 </plugins>
108 </build>
109
110</project>
Note: See TracBrowser for help on using the repository browser.