source: pom.xml@ 3965aed

Last change on this file since 3965aed was 3965aed, checked in by lepaSi <86915414+lepaSi@…>, 9 months ago

Init

  • Property mode set to 100644
File size: 3.6 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.5</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>mk.finki.ukim.mk</groupId>
12 <artifactId>VehicleRent</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>VehicleRent</name>
15 <description>vehiclerent</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>
28 <dependency>
29 <groupId>org.thymeleaf.extras</groupId>
30 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
34 <artifactId>spring-boot-starter-security</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.springframework.boot</groupId>
38 <artifactId>spring-boot-starter-data-jpa</artifactId>
39 </dependency>
40
41
42
43 <dependency>
44 <groupId>com.h2database</groupId>
45 <artifactId>h2</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.postgresql</groupId>
49 <artifactId>postgresql</artifactId>
50 </dependency>
51
52
53 <dependency>
54 <groupId>org.projectlombok</groupId>
55 <artifactId>lombok</artifactId>
56 <optional>true</optional>
57 </dependency>
58
59
60 <dependency>
61 <groupId>org.springframework.boot</groupId>
62 <artifactId>spring-boot-starter-test</artifactId>
63 <scope>test</scope>
64 <exclusions>
65 <exclusion>
66 <groupId>org.junit.vintage</groupId>
67 <artifactId>junit-vintage-engine</artifactId>
68 </exclusion>
69 </exclusions>
70 </dependency>
71
72 <dependency>
73 <groupId>junit</groupId>
74 <artifactId>junit</artifactId>
75 </dependency>
76
77 <dependency>
78 <groupId>org.seleniumhq.selenium</groupId>
79 <artifactId>selenium-java</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>org.seleniumhq.selenium</groupId>
84 <artifactId>htmlunit-driver</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.projectlombok</groupId>
88 <artifactId>lombok</artifactId>
89 </dependency>
90
91 </dependencies>
92
93 <build>
94 <plugins>
95 <plugin>
96 <groupId>org.springframework.boot</groupId>
97 <artifactId>spring-boot-maven-plugin</artifactId>
98 <configuration>
99 <excludes>
100 <exclude>
101 <groupId>org.projectlombok</groupId>
102 <artifactId>lombok</artifactId>
103 </exclude>
104 </excludes>
105 </configuration>
106 </plugin>
107 </plugins>
108 </build>
109
110</project>
Note: See TracBrowser for help on using the repository browser.