source: FullyStocked/pom.xml@ 6489bb9

main
Last change on this file since 6489bb9 was 6489bb9, checked in by Bojan <bojantrpeski123@…>, 2 years ago

Spring security added with register and login controllers

  • Property mode set to 100644
File size: 3.2 KB
RevLine 
[9f78098]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>2.7.4</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.bazi</groupId>
12 <artifactId>FullyStocked</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>FullyStocked</name>
15 <description>FullyStocked</description>
16 <properties>
17 <java.version>17</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>
[2a50a21]28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-data-jpa</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.postgresql</groupId>
34 <artifactId>postgresql</artifactId>
35 </dependency>
[6489bb9]36 <dependency>
37 <groupId>org.springframework.boot</groupId>
38 <artifactId>spring-boot-starter-security</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>org.thymeleaf.extras</groupId>
42 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
43 </dependency>
[9f78098]44 <dependency>
45 <groupId>org.projectlombok</groupId>
46 <artifactId>lombok</artifactId>
47 <optional>true</optional>
48 </dependency>
49 <dependency>
50 <groupId>org.springframework.boot</groupId>
51 <artifactId>spring-boot-starter-test</artifactId>
52 <scope>test</scope>
53 </dependency>
[2a50a21]54 <dependency>
55 <groupId>org.springframework.boot</groupId>
56 <artifactId>spring-boot-starter-data-jpa</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>jakarta.validation</groupId>
60 <artifactId>jakarta.validation-api</artifactId>
61 <version>2.0.2</version>
62 </dependency>
[cd2209e]63 <dependency>
64 <groupId>org.springframework.security</groupId>
65 <artifactId>spring-security-crypto</artifactId>
66 <version>5.7.5</version>
67 </dependency>
[9f78098]68 </dependencies>
69
70 <build>
71 <plugins>
72 <plugin>
73 <groupId>org.springframework.boot</groupId>
74 <artifactId>spring-boot-maven-plugin</artifactId>
75 <configuration>
76 <excludes>
77 <exclude>
78 <groupId>org.projectlombok</groupId>
79 <artifactId>lombok</artifactId>
80 </exclude>
81 </excludes>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
86
87</project>
Note: See TracBrowser for help on using the repository browser.