source: pom.xml

Last change on this file was 850b344, checked in by Tamara Simikj <tamara.simic12@…>, 20 months ago

Initial commit

  • Property mode set to 100644
File size: 3.4 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.6.3</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.project</groupId>
12 <artifactId>BeautyCenter</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>BeautyCenter</name>
15 <description>BeautyCenter</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-data-jpa</artifactId>
23 </dependency>
24 <dependency>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-data-rest</artifactId>
27 </dependency>
28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-security</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
34 <artifactId>spring-boot-starter-thymeleaf</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.springframework.boot</groupId>
38 <artifactId>spring-boot-starter-validation</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>org.springframework.boot</groupId>
42 <artifactId>spring-boot-starter-web</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.thymeleaf.extras</groupId>
46 <artifactId>thymeleaf-extras-springsecurity5</artifactId>
47 </dependency>
48
49 <dependency>
50 <groupId>com.h2database</groupId>
51 <artifactId>h2</artifactId>
52 <scope>runtime</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.postgresql</groupId>
56 <artifactId>postgresql</artifactId>
57 <scope>runtime</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.projectlombok</groupId>
61 <artifactId>lombok</artifactId>
62 <optional>true</optional>
63 </dependency>
64 <dependency>
65 <groupId>org.springframework.boot</groupId>
66 <artifactId>spring-boot-starter-test</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.springframework.security</groupId>
71 <artifactId>spring-security-test</artifactId>
72 <scope>test</scope>
73 </dependency>
74 </dependencies>
75
76
77 <build>
78 <plugins>
79 <plugin>
80 <groupId>org.springframework.boot</groupId>
81 <artifactId>spring-boot-maven-plugin</artifactId>
82 <configuration>
83 <excludes>
84 <exclude>
85 <groupId>org.projectlombok</groupId>
86 <artifactId>lombok</artifactId>
87 </exclude>
88 </excludes>
89 </configuration>
90 </plugin>
91 </plugins>
92 </build>
93
94</project>
Note: See TracBrowser for help on using the repository browser.