source: pom.xml

main
Last change on this file was c3268ca, checked in by Stefan Risteski <stefanristeski2001@…>, 9 months ago

Project

The whole Project

  • Property mode set to 100644
File size: 3.1 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.1</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.example</groupId>
12 <artifactId>Kvizko</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>Kvizko</name>
15 <description>Kvizko</description>
16 <properties>
17 <java.version>19</java.version>
18 <maven.compiler.source>17</maven.compiler.source>
19 <maven.compiler.target>17</maven.compiler.target>
20 </properties>
21
22
23
24 <dependencies>
25 <dependency>
26 <groupId>org.springframework.boot</groupId>
27 <version>3.0.1</version>
28 <artifactId>spring-boot-starter-thymeleaf</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.projectlombok</groupId>
38 <artifactId>lombok</artifactId>
39 <optional>true</optional>
40 </dependency>
41 <dependency>
42 <groupId>org.springframework.boot</groupId>
43 <artifactId>spring-boot-starter-test</artifactId>
44 <scope>test</scope>
45 </dependency>
46
47
48 <dependency>
49 <groupId>org.springframework.data</groupId>
50 <artifactId>spring-data-jpa</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.springframework.boot</groupId>
54 <artifactId>spring-boot-starter-data-jpa</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>org.postgresql</groupId>
59 <artifactId>postgresql</artifactId>
60 <scope>runtime</scope>
61 </dependency>
62
63 <dependency>
64 <groupId>org.springframework.boot</groupId>
65 <artifactId>spring-boot-starter-security</artifactId>
66 <version>3.0.0</version>
67 </dependency>
68
69 <dependency>
70 <groupId>org.thymeleaf.extras</groupId>
71 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
72 <version> 3.0.4.RELEASE</version>
73 </dependency>
74
75 </dependencies>
76
77
78
79
80 <build>
81 <plugins>
82 <plugin>
83 <groupId>org.springframework.boot</groupId>
84 <artifactId>spring-boot-maven-plugin</artifactId>
85 <version>3.0.1</version>
86 <configuration>
87 <excludes>
88 <exclude>
89 <groupId>org.projectlombok</groupId>
90 <artifactId>lombok</artifactId>
91 </exclude>
92 </excludes>
93 </configuration>
94 </plugin>
95 </plugins>
96 </build>
97
98</project>
Note: See TracBrowser for help on using the repository browser.