source: pom.xml

Last change on this file was 5ea00d7, checked in by Malek Alavi <malekalavi7@…>, 43 hours ago

Initial project upload

  • Property mode set to 100644
File size: 4.0 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>4.0.2</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>mk.ukim.finki.wp</groupId>
12 <artifactId>db</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>db</name>
15 <description>db</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>21</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-webmvc</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.thymeleaf.extras</groupId>
51 <artifactId>thymeleaf-extras-springsecurity6</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.postgresql</groupId>
56 <artifactId>postgresql</artifactId>
57 <scope>runtime</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.springframework.boot</groupId>
61 <artifactId>spring-boot-starter-data-jpa-test</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.springframework.boot</groupId>
66 <artifactId>spring-boot-starter-security-test</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-starter-thymeleaf-test</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.springframework.boot</groupId>
76 <artifactId>spring-boot-starter-webmvc-test</artifactId>
77 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.projectlombok</groupId>
81 <artifactId>lombok</artifactId>
82 <optional>true</optional>
83 </dependency>
84 </dependencies>
85
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-compiler-plugin</artifactId>
91 <configuration>
92 <annotationProcessorPaths>
93 <path>
94 <groupId>org.projectlombok</groupId>
95 <artifactId>lombok</artifactId>
96 </path>
97 </annotationProcessorPaths>
98 </configuration>
99 </plugin>
100 <plugin>
101 <groupId>org.springframework.boot</groupId>
102 <artifactId>spring-boot-maven-plugin</artifactId>
103 <configuration>
104 <excludes>
105 <exclude>
106 <groupId>org.projectlombok</groupId>
107 <artifactId>lombok</artifactId>
108 </exclude>
109 </excludes>
110 </configuration>
111 </plugin>
112 </plugins>
113 </build>
114
115</project>
Note: See TracBrowser for help on using the repository browser.