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.6.3</version>
|
---|
9 | <relativePath/> <!-- lookup parent from repository -->
|
---|
10 | </parent>
|
---|
11 | <groupId>com.example</groupId>
|
---|
12 | <artifactId>db</artifactId>
|
---|
13 | <version>0.0.1-SNAPSHOT</version>
|
---|
14 | <name>db</name>
|
---|
15 | <description>db</description>
|
---|
16 | <properties>
|
---|
17 | <java.version>11</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 |
|
---|
33 | <dependency>
|
---|
34 | <groupId>org.projectlombok</groupId>
|
---|
35 | <artifactId>lombok</artifactId>
|
---|
36 | <optional>true</optional>
|
---|
37 | </dependency>
|
---|
38 | <dependency>
|
---|
39 | <groupId>org.springframework.boot</groupId>
|
---|
40 | <artifactId>spring-boot-starter-test</artifactId>
|
---|
41 | <scope>test</scope>
|
---|
42 | </dependency>
|
---|
43 | <dependency>
|
---|
44 | <groupId>org.springframework.boot</groupId>
|
---|
45 | <artifactId>spring-boot-starter-data-jpa</artifactId>
|
---|
46 | </dependency>
|
---|
47 | <dependency>
|
---|
48 | <groupId>org.postgresql</groupId>
|
---|
49 | <artifactId>postgresql</artifactId>
|
---|
50 | <scope>runtime</scope>
|
---|
51 | </dependency>
|
---|
52 | <dependency>
|
---|
53 | <groupId>com.h2database</groupId>
|
---|
54 | <artifactId>h2</artifactId>
|
---|
55 | <scope>runtime</scope>
|
---|
56 | </dependency>
|
---|
57 | <!-- <dependency>-->
|
---|
58 | <!-- <groupId>org.springframework.boot</groupId>-->
|
---|
59 | <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
|
---|
60 | <!-- </dependency>-->
|
---|
61 | <!-- <dependency>-->
|
---|
62 | <!-- <groupId>org.springframework.boot</groupId>-->
|
---|
63 | <!-- <artifactId>spring-boot-starter-thymeleaf</artifactId>-->
|
---|
64 | <!-- </dependency>-->
|
---|
65 | <!-- <dependency>-->
|
---|
66 | <!-- <groupId>org.springframework.boot</groupId>-->
|
---|
67 | <!-- <artifactId>spring-boot-starter-web</artifactId>-->
|
---|
68 | <!-- </dependency>-->
|
---|
69 |
|
---|
70 | <!--<!– <dependency>–>-->
|
---|
71 | <!--<!– <groupId>com.h2database</groupId>–>-->
|
---|
72 | <!--<!– <artifactId>h2</artifactId>–>-->
|
---|
73 | <!--<!– <scope>runtime</scope>–>-->
|
---|
74 | <!--<!– </dependency>–>-->
|
---|
75 | <!-- <dependency>-->
|
---|
76 | <!-- <groupId>org.postgresql</groupId>-->
|
---|
77 | <!-- <artifactId>postgresql</artifactId>-->
|
---|
78 | <!-- <scope>runtime</scope>-->
|
---|
79 | <!-- </dependency>-->
|
---|
80 | <!-- <dependency>-->
|
---|
81 | <!-- <groupId>org.projectlombok</groupId>-->
|
---|
82 | <!-- <artifactId>lombok</artifactId>-->
|
---|
83 | <!-- <optional>true</optional>-->
|
---|
84 | <!-- </dependency>-->
|
---|
85 | <!-- <dependency>-->
|
---|
86 | <!-- <groupId>org.springframework.boot</groupId>-->
|
---|
87 | <!-- <artifactId>spring-boot-starter-test</artifactId>-->
|
---|
88 | <!-- <scope>test</scope>-->
|
---|
89 | <!-- </dependency>-->
|
---|
90 | </dependencies>
|
---|
91 |
|
---|
92 | <build>
|
---|
93 | <plugins>
|
---|
94 | <plugin>
|
---|
95 | <groupId>org.springframework.boot</groupId>
|
---|
96 | <artifactId>spring-boot-maven-plugin</artifactId>
|
---|
97 | <configuration>
|
---|
98 | <excludes>
|
---|
99 | <exclude>
|
---|
100 | <groupId>org.projectlombok</groupId>
|
---|
101 | <artifactId>lombok</artifactId>
|
---|
102 | </exclude>
|
---|
103 | </excludes>
|
---|
104 | </configuration>
|
---|
105 | </plugin>
|
---|
106 | </plugins>
|
---|
107 | </build>
|
---|
108 |
|
---|
109 | </project>
|
---|
110 |
|
---|