source: pom.xml@ 19fa1a3

Last change on this file since 19fa1a3 was 19fa1a3, checked in by Ordanche <ordanchenedev@…>, 3 weeks ago

Initial commit

  • Property mode set to 100644
File size: 2.9 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.3.3</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>mk.ukim.finki.wp</groupId>
12 <artifactId>Bank-App-Final</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>Bank-App-Final</name>
15 <description>Banking Web Application</description>
16 <url/>
17 <licenses>
18 <license/>
19 </licenses>
20 <developers>
21 <developer/>
22 </developers>
23 <scm>
24 <connection/>
25 <developerConnection/>
26 <tag/>
27 <url/>
28 </scm>
29 <properties>
30 <java.version>17</java.version>
31 </properties>
32 <dependencies>
33 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-data-jpa</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-starter-security</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.springframework.boot</groupId>
43 <artifactId>spring-boot-starter-thymeleaf</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.springframework.boot</groupId>
47 <artifactId>spring-boot-starter-web</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.thymeleaf.extras</groupId>
51 <artifactId>thymeleaf-extras-springsecurity6</artifactId>
52 </dependency>
53
54 <!-- <dependency>-->
55 <!-- <groupId>mysql</groupId>-->
56 <!-- <artifactId>mysql-connector-java</artifactId>-->
57 <!-- <version>8.0.33</version>-->
58 <!-- <scope>runtime</scope>-->
59 <!-- </dependency>-->
60 <dependency>
61 <groupId>org.postgresql</groupId>
62 <artifactId>postgresql</artifactId>
63 <version>42.7.4</version> <!-- Ensure to use the latest version -->
64 </dependency>
65
66
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.springframework.security</groupId>
74 <artifactId>spring-security-test</artifactId>
75 <scope>test</scope>
76 </dependency>
77 </dependencies>
78
79 <build>
80 <plugins>
81 <plugin>
82 <groupId>org.springframework.boot</groupId>
83 <artifactId>spring-boot-maven-plugin</artifactId>
84 </plugin>
85 </plugins>
86 </build>
87
88</project>
Note: See TracBrowser for help on using the repository browser.