source: pom.xml@ 7d43957

main
Last change on this file since 7d43957 was 7d43957, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 18 months ago

Added functionalities

  • 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>2.7.4</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.example</groupId>
12 <artifactId>AutoPartz</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>AutoPartz</name>
15 <description>AutoPartz</description>
16 <properties>
17 <java.version>17</java.version>
18 <spring-security.version>5.6.1</spring-security.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.thymeleaf.extras</groupId>
27 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>org.springframework.boot</groupId>
31 <artifactId>spring-boot-starter-thymeleaf</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-web</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>javax.servlet</groupId>
39 <artifactId>javax.servlet-api</artifactId>
40 <version>4.0.1</version>
41 <scope>provided</scope>
42 </dependency>
43
44
45 <dependency>
46 <groupId>org.postgresql</groupId>
47 <artifactId>postgresql</artifactId>
48 <scope>runtime</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.projectlombok</groupId>
52 <artifactId>lombok</artifactId>
53 <optional>true</optional>
54 </dependency>
55 <dependency>
56 <groupId>org.springframework.boot</groupId>
57 <artifactId>spring-boot-starter-test</artifactId>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.springframework.boot</groupId>
62 <artifactId>spring-boot-starter-security</artifactId>
63 </dependency>
64 </dependencies>
65
66
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-maven-plugin</artifactId>
72 <configuration>
73 <excludes>
74 <exclude>
75 <groupId>org.projectlombok</groupId>
76 <artifactId>lombok</artifactId>
77 </exclude>
78 </excludes>
79 </configuration>
80 </plugin>
81 </plugins>
82 </build>
83
84</project>
Note: See TracBrowser for help on using the repository browser.