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>project.FMO.app</groupId>
|
---|
12 | <artifactId>projcetFMO</artifactId>
|
---|
13 | <version>0.0.1-SNAPSHOT</version>
|
---|
14 | <name>projcetFMO</name>
|
---|
15 | <description>projcetFMO</description>
|
---|
16 | <properties>
|
---|
17 | <java.version>17</java.version>
|
---|
18 | </properties>
|
---|
19 | <dependencies>
|
---|
20 |
|
---|
21 | <dependency>
|
---|
22 | <groupId>org.springframework.boot</groupId>
|
---|
23 | <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
---|
24 | </dependency>
|
---|
25 |
|
---|
26 | <dependency>
|
---|
27 | <groupId>org.springframework.boot</groupId>
|
---|
28 | <artifactId>spring-boot-starter-web</artifactId>
|
---|
29 | </dependency>
|
---|
30 |
|
---|
31 | <dependency>
|
---|
32 | <groupId>org.springframework.boot</groupId>
|
---|
33 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
---|
34 | </dependency>
|
---|
35 |
|
---|
36 | <dependency>
|
---|
37 | <groupId>org.flywaydb</groupId>
|
---|
38 | <artifactId>flyway-maven-plugin</artifactId>
|
---|
39 | <version>6.2.3</version>
|
---|
40 | </dependency>
|
---|
41 |
|
---|
42 |
|
---|
43 | <dependency>
|
---|
44 | <groupId>org.springframework.boot</groupId>
|
---|
45 | <artifactId>spring-boot-starter-security</artifactId>
|
---|
46 | </dependency>
|
---|
47 |
|
---|
48 | <dependency>
|
---|
49 | <groupId>org.thymeleaf.extras</groupId>
|
---|
50 | <artifactId>thymeleaf-extras-springsecurity5</artifactId>
|
---|
51 | </dependency>
|
---|
52 |
|
---|
53 | <dependency>
|
---|
54 | <groupId>com.h2database</groupId>
|
---|
55 | <artifactId>h2</artifactId>
|
---|
56 | </dependency>
|
---|
57 |
|
---|
58 |
|
---|
59 | <dependency>
|
---|
60 | <groupId>org.postgresql</groupId>
|
---|
61 | <artifactId>postgresql</artifactId>
|
---|
62 | </dependency>
|
---|
63 |
|
---|
64 |
|
---|
65 | <dependency>
|
---|
66 | <groupId>org.projectlombok</groupId>
|
---|
67 | <artifactId>lombok</artifactId>
|
---|
68 | <optional>true</optional>
|
---|
69 | </dependency>
|
---|
70 |
|
---|
71 | <dependency>
|
---|
72 | <groupId>com.auth0</groupId>
|
---|
73 | <artifactId>java-jwt</artifactId>
|
---|
74 | <version>3.7.0</version>
|
---|
75 | </dependency>
|
---|
76 |
|
---|
77 | <dependency>
|
---|
78 | <groupId>org.springframework.boot</groupId>
|
---|
79 | <artifactId>spring-boot-starter-test</artifactId>
|
---|
80 | <scope>test</scope>
|
---|
81 | <exclusions>
|
---|
82 | <exclusion>
|
---|
83 | <groupId>org.junit.vintage</groupId>
|
---|
84 | <artifactId>junit-vintage-engine</artifactId>
|
---|
85 | </exclusion>
|
---|
86 | </exclusions>
|
---|
87 | </dependency>
|
---|
88 |
|
---|
89 | <dependency>
|
---|
90 | <groupId>junit</groupId>
|
---|
91 | <artifactId>junit</artifactId>
|
---|
92 | </dependency>
|
---|
93 |
|
---|
94 | <dependency>
|
---|
95 | <groupId>org.seleniumhq.selenium</groupId>
|
---|
96 | <artifactId>selenium-java</artifactId>
|
---|
97 | </dependency>
|
---|
98 |
|
---|
99 | <dependency>
|
---|
100 | <groupId>org.seleniumhq.selenium</groupId>
|
---|
101 | <artifactId>htmlunit-driver</artifactId>
|
---|
102 | </dependency>
|
---|
103 |
|
---|
104 | </dependencies>
|
---|
105 |
|
---|
106 | <build>
|
---|
107 | <plugins>
|
---|
108 | <plugin>
|
---|
109 | <groupId>org.springframework.boot</groupId>
|
---|
110 | <artifactId>spring-boot-maven-plugin</artifactId>
|
---|
111 | <configuration>
|
---|
112 | <excludes>
|
---|
113 | <exclude>
|
---|
114 | <groupId>org.projectlombok</groupId>
|
---|
115 | <artifactId>lombok</artifactId>
|
---|
116 | </exclude>
|
---|
117 | </excludes>
|
---|
118 | </configuration>
|
---|
119 | </plugin>
|
---|
120 | </plugins>
|
---|
121 | </build>
|
---|
122 |
|
---|
123 | </project>
|
---|